Rest of cosmetic changes -- simpler, black theme with easier-to-touch buttons and...
[zxing.git] / android / res / layout-land / share.xml
index 5056498..5aefb29 100755 (executable)
               android:id="@+id/encode_view"
               android:layout_width="fill_parent"
               android:layout_height="fill_parent"
+              android:gravity="center"
               android:background="@color/share_view"
               android:orientation="vertical"
               android:padding="16dip">
 
   <TextView
       android:layout_width="fill_parent"
-      android:layout_height="wrap_content"
-      android:gravity="left"
+      android:layout_height="0dip"
+      android:layout_weight="1"
       android:textColor="@color/share_text"
-      android:textSize="14sp"
-      android:text="@string/msg_share_explanation"
-      android:paddingBottom="32dip"/>
+      android:textSize="22sp"
+      android:text="@string/msg_share_explanation"/>
 
   <LinearLayout
-      android:layout_width="wrap_content"
-      android:layout_height="wrap_content"
+      android:layout_width="fill_parent"
+      android:layout_height="0dip"
+      android:layout_weight="2"
       android:background="@color/share_view"
-      android:orientation="horizontal"
-      android:layout_gravity="center">
+      android:orientation="horizontal">
 
     <ImageView
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
+        android:layout_width="0dip"
+        android:layout_height="fill_parent"
+        android:layout_weight="3"
         android:scaleType="center"
         android:src="@drawable/share_via_barcode"
         android:paddingRight="32dip"/>
 
-    <TableLayout
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content">
-
-      <TableRow>
-
-        <Button android:id="@+id/contact_button"
-                android:layout_width="fill_parent"
-                android:layout_height="wrap_content"
-                android:text="@string/button_share_contact"
-                android:minWidth="90dip"/>
+    <LinearLayout
+        android:layout_width="wrap_content"
+        android:layout_height="fill_parent"
+        android:layout_weight="1"
+        android:orientation="vertical">
 
-        <Button android:id="@+id/bookmark_button"
-                android:layout_width="fill_parent"
-                android:layout_height="wrap_content"
-                android:text="@string/button_share_bookmark"
-                android:minWidth="90dip"/>
+      <Button android:id="@+id/contact_button"
+              android:layout_width="fill_parent"
+              android:layout_height="fill_parent"
+              android:layout_weight="1"
+              android:text="@string/button_share_contact"/>
 
-      </TableRow>
+      <Button android:id="@+id/bookmark_button"
+              android:layout_width="fill_parent"
+              android:layout_height="fill_parent"
+              android:layout_weight="1"
+              android:text="@string/button_share_bookmark"/>
 
-      <TableRow>
+    </LinearLayout>
 
-        <Button android:id="@+id/clipboard_button"
-                android:layout_width="fill_parent"
-                android:layout_height="wrap_content"
-                android:text="@string/button_share_clipboard"
-                android:minWidth="90dip"/>
+    <LinearLayout
+        android:layout_width="wrap_content"
+        android:layout_height="fill_parent"
+        android:layout_weight="1"
+        android:orientation="vertical">
 
-        <Button android:id="@+id/app_button"
-                android:layout_width="fill_parent"
-                android:layout_height="wrap_content"
-                android:text="@string/button_share_app"
-                android:minWidth="90dip"/>
+      <Button android:id="@+id/clipboard_button"
+              android:layout_width="fill_parent"
+              android:layout_height="fill_parent"
+              android:layout_weight="1"
+              android:text="@string/button_share_clipboard"/>
 
-      </TableRow>
+      <Button android:id="@+id/app_button"
+              android:layout_width="fill_parent"
+              android:layout_height="fill_parent"
+              android:layout_weight="1"
+              android:text="@string/button_share_app"/>
 
-    </TableLayout>
+    </LinearLayout>
 
   </LinearLayout>