fix log to reflect reality
[zxing.git] / android / res / layout-land / share.xml
index f505130..1056315 100755 (executable)
@@ -18,6 +18,7 @@
               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:textColor="@color/share_text"
-      android:textSize="18.0sp"
+      android:textSize="18sp"
       android:text="@string/msg_share_explanation"
-      android:paddingBottom="32dip"/>
+      android:paddingBottom="24dip"/>
 
   <LinearLayout
-      android:layout_width="wrap_content"
+      android:layout_width="fill_parent"
       android:layout_height="wrap_content"
       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:scaleType="center"
         android:src="@drawable/share_via_barcode"
-        android:paddingRight="48dip"/>
-
-    <TableLayout
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content">
-
-      <TableRow>
+        android:paddingRight="24dip"/>
 
-        <Button android:id="@+id/contact_button"
-                android:layout_width="fill_parent"
-                android:layout_height="wrap_content"
-                android:text="@string/button_share_contact"/>
+    <LinearLayout
+        android:layout_width="0dip"
+        android:layout_height="wrap_content"
+        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"/>
+      <Button android:id="@+id/app_button"
+              android:layout_width="fill_parent"
+              android:layout_height="wrap_content"
+              android:text="@string/button_share_app"/>
 
-      </TableRow>
+      <Button android:id="@+id/contact_button"
+              android:layout_width="fill_parent"
+              android:layout_height="wrap_content"
+              android:text="@string/button_share_contact"/>
 
-      <TableRow>
+    </LinearLayout>
 
-        <Button android:id="@+id/clipboard_button"
-                android:layout_width="fill_parent"
-                android:layout_height="wrap_content"
-                android:text="@string/button_share_clipboard"/>
+    <LinearLayout
+        android:layout_width="0dip"
+        android:layout_height="wrap_content"
+        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"/>
+      <Button android:id="@+id/bookmark_button"
+              android:layout_width="fill_parent"
+              android:layout_height="wrap_content"
+              android:text="@string/button_share_bookmark"/>
 
-      </TableRow>
+      <Button android:id="@+id/clipboard_button"
+              android:layout_width="fill_parent"
+              android:layout_height="wrap_content"
+              android:text="@string/button_share_clipboard"/>
 
-    </TableLayout>
+    </LinearLayout>
 
   </LinearLayout>