yggdrasil-android/app/src/main/res/layout/peers_connected.xml
Neil Alexander 5887ae47b2 Build 6
Fixes #8
Fixes #6
2021-08-21 22:18:40 +01:00

35 lines
No EOL
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingLeft="4pt"
android:paddingTop="2pt"
android:paddingEnd="4pt"
android:paddingBottom="2pt">
<TextView
android:id="@+id/addressLabel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="end"
android:singleLine="true"
android:text="(unknown)"
android:textColor="?attr/textDefault" />
<TextView
android:id="@+id/detailsLabel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:alpha="0.5"
android:ellipsize="end"
android:singleLine="true"
android:text="TCP peer on unknown"
android:textColor="?attr/textDefault"
android:textSize="12sp" />
</LinearLayout>
</TableRow>