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.

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

mercurial