mobile/android/base/resources/layout/web_app.xml

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

michael@0 1 <?xml version="1.0" encoding="utf-8"?>
michael@0 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
michael@0 3 android:id="@+id/main_layout"
michael@0 4 android:orientation="vertical"
michael@0 5 android:layout_width="fill_parent"
michael@0 6 android:layout_height="fill_parent">
michael@0 7
michael@0 8 <LinearLayout android:id="@+id/webapp_titlebar"
michael@0 9 android:visibility="gone"
michael@0 10 style="@style/WebView.Titlebar"
michael@0 11 android:layout_width="fill_parent"
michael@0 12 android:layout_height="wrap_content"
michael@0 13 android:orientation="horizontal">
michael@0 14
michael@0 15 <TextView android:id="@+id/webapp_title"
michael@0 16 style="@style/WebView.Titlebar.Title"
michael@0 17 android:layout_width="fill_parent"
michael@0 18 android:layout_height="wrap_content"
michael@0 19 android:singleLine="true"/>
michael@0 20
michael@0 21 </LinearLayout>
michael@0 22
michael@0 23 <RelativeLayout android:id="@+id/gecko_layout"
michael@0 24 android:layout_width="fill_parent"
michael@0 25 android:layout_height="fill_parent"
michael@0 26 android:layout_weight="1"
michael@0 27 android:layout_below="@+id/webapp_titlebar">
michael@0 28
michael@0 29 <include layout="@layout/shared_ui_components"/>
michael@0 30
michael@0 31 <RelativeLayout android:id="@+id/splashscreen"
michael@0 32 android:layout_width="fill_parent"
michael@0 33 android:layout_height="fill_parent" >
michael@0 34
michael@0 35 <ImageView android:id="@+id/splashscreen_icon"
michael@0 36 android:minWidth="128dip"
michael@0 37 android:minHeight="128dip"
michael@0 38 android:layout_width="wrap_content"
michael@0 39 android:layout_height="wrap_content"
michael@0 40 android:layout_centerHorizontal="true"
michael@0 41 android:layout_centerVertical="true"/>
michael@0 42
michael@0 43 <ProgressBar android:id="@+id/splashscreen_progress"
michael@0 44 android:layout_width="wrap_content"
michael@0 45 android:layout_height="wrap_content"
michael@0 46 android:gravity="center"
michael@0 47 android:layout_centerHorizontal="true"
michael@0 48 android:layout_alignParentBottom="true"
michael@0 49 android:paddingBottom="30dip"
michael@0 50 android:visibility="gone"/>
michael@0 51
michael@0 52 </RelativeLayout>
michael@0 53
michael@0 54 </RelativeLayout>
michael@0 55
michael@0 56 <ViewStub android:id="@+id/toast_stub"
michael@0 57 android:layout="@layout/button_toast"
michael@0 58 style="@style/Toast"/>
michael@0 59
michael@0 60 </RelativeLayout>

mercurial