2015-09-06 00:03:56 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-03-28 23:23:10 +01:00
|
|
|
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"
|
2015-08-30 00:21:51 +02:00
|
|
|
android:orientation="vertical"
|
2015-09-06 00:03:56 +02:00
|
|
|
android:animateLayoutChanges="true"
|
2015-07-28 17:30:20 +02:00
|
|
|
tools:context="nodomain.freeyourgadget.gadgetbridge.activities.FwAppInstallerActivity">
|
2015-03-28 23:23:10 +01:00
|
|
|
|
2015-08-30 00:21:51 +02:00
|
|
|
<ListView
|
|
|
|
android:id="@+id/itemListView"
|
|
|
|
android:layout_width="wrap_content"
|
2015-09-06 00:03:56 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-04-03 21:09:35 +02:00
|
|
|
android:layout_alignParentEnd="false"></ListView>
|
2015-08-30 00:21:51 +02:00
|
|
|
|
2015-03-28 23:23:10 +01:00
|
|
|
<TextView
|
2015-08-30 00:21:51 +02:00
|
|
|
android:id="@+id/infoTextView"
|
2015-09-06 00:03:56 +02:00
|
|
|
android:layout_width="fill_parent"
|
2015-08-30 00:21:51 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
2015-09-06 00:03:56 +02:00
|
|
|
android:layout_alignParentTop="false"
|
|
|
|
android:layout_alignParentEnd="false"
|
|
|
|
android:layout_alignParentStart="false"
|
|
|
|
android:layout_below="@+id/itemListView" />
|
2015-08-30 00:21:51 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/fwappStatusIcon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:contentDescription="Status Icon"
|
2015-09-06 00:03:56 +02:00
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_alignParentTop="false"
|
|
|
|
android:layout_alignParentLeft="false"
|
|
|
|
android:layout_below="@+id/infoTextView" />
|
2015-08-30 00:21:51 +02:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/installProgressBar"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:indeterminate="true"
|
|
|
|
android:layout_gravity="center_horizontal"
|
2015-09-06 00:03:56 +02:00
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_below="@+id/fwappStatusIcon"
|
|
|
|
android:layout_centerHorizontal="true" />
|
2015-03-28 23:23:10 +01:00
|
|
|
|
2015-04-06 20:58:35 +02:00
|
|
|
<Button
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-05-08 00:42:46 +02:00
|
|
|
android:text="@string/appinstaller_install"
|
2015-04-06 20:58:35 +02:00
|
|
|
android:id="@+id/installButton"
|
2015-08-30 00:21:51 +02:00
|
|
|
android:layout_gravity="center_horizontal"
|
2015-09-06 00:03:56 +02:00
|
|
|
android:enabled="false"
|
|
|
|
android:layout_alignParentBottom="false"
|
|
|
|
android:layout_alignWithParentIfMissing="false"
|
|
|
|
android:layout_alignParentTop="false"
|
|
|
|
android:layout_alignParentLeft="false"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_below="@+id/installProgressBar"
|
|
|
|
android:layout_marginTop="10dp" />
|
2015-04-06 20:58:35 +02:00
|
|
|
|
2016-04-03 00:50:45 +02:00
|
|
|
<ListView
|
|
|
|
android:id="@+id/detailsListView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/installButton"
|
2017-04-03 21:09:35 +02:00
|
|
|
android:layout_alignParentEnd="false"></ListView>
|
2016-04-03 00:50:45 +02:00
|
|
|
|
2015-08-30 00:21:51 +02:00
|
|
|
<android.widget.Space
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-09-06 00:03:56 +02:00
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_centerHorizontal="true" />
|
2015-08-30 00:21:51 +02:00
|
|
|
|
2015-09-06 00:03:56 +02:00
|
|
|
</RelativeLayout>
|