tor-android/app/src/main/res/layout/onion_item.xml

21 lines
682 B
XML
Raw Normal View History

2016-11-17 02:35:38 +01:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2016-11-18 01:00:57 +01:00
xmlns:tools="http://schemas.android.com/tools"
2016-11-17 02:35:38 +01:00
android:layout_width="match_parent"
2016-11-18 01:26:10 +01:00
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginBottom="15sp">
2016-11-17 02:35:38 +01:00
2016-11-17 16:51:39 +01:00
<TextView
android:id="@+id/hs_name"
2016-11-17 02:35:38 +01:00
android:layout_width="match_parent"
2016-11-18 01:00:57 +01:00
android:layout_height="wrap_content"
android:textSize="24sp" />
2016-11-17 02:35:38 +01:00
2016-11-17 16:51:39 +01:00
<TextView
android:id="@+id/hs_onion"
android:layout_width="match_parent"
2016-11-18 01:00:57 +01:00
android:layout_height="wrap_content"
android:textSize="18sp" />
2016-11-17 02:35:38 +01:00
</LinearLayout>