2015-04-21 23:30:06 +10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-11-02 16:50:01 +03:00
|
|
|
<RelativeLayout
|
2015-04-21 23:30:06 +10:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2015-12-13 08:25:41 +11:00
|
|
|
android:layout_height="match_parent">
|
2015-04-21 23:30:06 +10:00
|
|
|
|
2015-12-14 22:45:37 +11:00
|
|
|
<RelativeLayout
|
2015-04-21 23:30:06 +10:00
|
|
|
android:layout_width="match_parent"
|
2015-12-14 22:45:37 +11:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/category_wrapper"
|
|
|
|
android:layout_alignParentTop="true">
|
2015-10-29 17:38:04 +03:00
|
|
|
|
2015-12-14 22:45:37 +11:00
|
|
|
<Spinner
|
|
|
|
android:id="@+id/category_spinner"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:paddingBottom="1dp" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="2dp"
|
|
|
|
android:layout_alignBottom="@id/category_spinner"
|
|
|
|
android:background="@color/fdroid_green" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
2015-04-21 23:30:06 +10:00
|
|
|
|
2015-11-06 18:46:02 +03:00
|
|
|
<ListView
|
|
|
|
style="@style/AppList"
|
2015-12-14 22:45:37 +11:00
|
|
|
android:layout_below="@id/category_wrapper" />
|
2015-11-07 09:05:10 +11:00
|
|
|
|
2015-11-06 18:46:02 +03:00
|
|
|
<TextView
|
|
|
|
style="@style/AppListEmptyText"
|
2015-12-14 22:45:37 +11:00
|
|
|
android:layout_below="@id/category_wrapper"
|
2015-11-06 18:46:02 +03:00
|
|
|
android:text="@string/empty_available_app_list" />
|
2015-04-21 23:30:06 +10:00
|
|
|
|
2015-11-02 16:50:01 +03:00
|
|
|
</RelativeLayout>
|