[Android] Move loading status bar at the bottom
    Sébastien Toque 
    git at videolan.org
       
    Tue Apr  3 22:54:25 CEST 2012
    
    
  
android | branch: master | Sébastien Toque <xilasz at gmail.com> | Tue Apr  3 22:48:57 2012 +0200| [6c999f1e371931c9b1de621cced064d56803e2e2] | committer: Sébastien Toque
Move loading status bar at the bottom
> http://git.videolan.org/gitweb.cgi/android.git/?a=commit;h=6c999f1e371931c9b1de621cced064d56803e2e2
---
 vlc-android/res/layout/main.xml |   40 +++++++++++++++++++-------------------
 1 files changed, 20 insertions(+), 20 deletions(-)
diff --git a/vlc-android/res/layout/main.xml b/vlc-android/res/layout/main.xml
index 6fb0b0f..957acba 100644
--- a/vlc-android/res/layout/main.xml
+++ b/vlc-android/res/layout/main.xml
@@ -42,6 +42,26 @@
             android:padding="10dip"
             android:onClick="searchClick" />
     </LinearLayout>
+    <TabHost
+        android:id="@android:id/tabhost"
+        android:layout_width="fill_parent"
+        android:layout_height="0dip"
+        android:layout_weight="1">
+        <LinearLayout
+            android:orientation="vertical"
+            android:layout_width="fill_parent"
+            android:layout_height="fill_parent">
+            <TabWidget
+                android:id="@android:id/tabs"
+                android:layout_width="fill_parent"
+                android:layout_height="wrap_content"
+                android:visibility="gone" />
+            <FrameLayout
+                android:id="@android:id/tabcontent"
+                android:layout_width="fill_parent"
+                android:layout_height="fill_parent" />
+        </LinearLayout>
+    </TabHost>
     <RelativeLayout
         android:id="@+id/info_layout"
         android:layout_width="fill_parent"
@@ -66,26 +86,6 @@
             android:shadowDx="1"
             android:shadowDy="1"/>
     </RelativeLayout>
-    <TabHost
-        android:id="@android:id/tabhost"
-        android:layout_width="fill_parent"
-        android:layout_height="0dip"
-        android:layout_weight="1">
-        <LinearLayout
-            android:orientation="vertical"
-            android:layout_width="fill_parent"
-            android:layout_height="fill_parent">
-            <TabWidget
-                android:id="@android:id/tabs"
-                android:layout_width="fill_parent"
-                android:layout_height="wrap_content"
-                android:visibility="gone" />
-            <FrameLayout
-                android:id="@android:id/tabcontent"
-                android:layout_width="fill_parent"
-                android:layout_height="fill_parent" />
-        </LinearLayout>
-    </TabHost>
     <org.videolan.vlc.widget.AudioMiniPlayer
         android:id="@+id/audio_mini_player"
         android:layout_height="wrap_content"
    
    
More information about the Android
mailing list