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