mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-21 12:03:02 +00:00
36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
tools:context=".AppView" >
|
|
|
|
<ListView
|
|
android:id="@+id/pcListView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_below="@+id/appListText"
|
|
android:fastScrollEnabled="true"
|
|
android:longClickable="false"
|
|
android:background="@drawable/list_view_unselected"
|
|
android:stackFromBottom="false">
|
|
</ListView>
|
|
|
|
<TextView
|
|
android:id="@+id/appListText"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:layout_alignParentTop="true"
|
|
android:paddingTop="0dp"
|
|
android:paddingBottom="10dp"
|
|
android:text="Applications" />
|
|
|
|
</RelativeLayout> |