2015-08-30 00:21:51 +02:00
|
|
|
<LinearLayout 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-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"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
>
|
|
|
|
</ListView>
|
|
|
|
|
2015-03-28 23:23:10 +01:00
|
|
|
<TextView
|
2015-08-30 00:21:51 +02:00
|
|
|
android:id="@+id/infoTextView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_weight="1"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/fwappStatusIcon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:contentDescription="Status Icon"
|
|
|
|
android:layout_weight="0"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/installProgressBar"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:indeterminate="true"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:visibility="gone"/>
|
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-04-06 20:58:35 +02:00
|
|
|
android:enabled="false" />
|
|
|
|
|
2015-08-30 00:21:51 +02:00
|
|
|
<android.widget.Space
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="3"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|