2015-01-07 14:00:18 +01:00
|
|
|
<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:paddingLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
|
|
tools:context="nodomain.freeyourgadget.gadgetbridge.ControlCenter">
|
|
|
|
|
2015-03-21 18:18:07 +01:00
|
|
|
<ListView
|
2015-01-12 00:35:15 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-21 18:18:07 +01:00
|
|
|
android:id="@+id/deviceListView"
|
|
|
|
android:layout_alignParentTop="true"
|
2015-03-27 12:33:51 +01:00
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_above="@+id/hintTextView" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:id="@+id/hintTextView"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:textStyle="italic" />
|
2015-01-18 01:10:44 +01:00
|
|
|
|
2015-01-07 14:00:18 +01:00
|
|
|
</RelativeLayout>
|