diff options
author | Chih-Chung Chang <> | 2009-04-08 05:14:37 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-04-08 05:14:37 -0700 |
commit | 272c3fdc60d4b4f773dfdff46ad3dd643ce22d5c (patch) | |
tree | 0884290e23fc567f24347e79ea3eb902945839e2 /res | |
parent | 885e55815c304efe199bc220fd8473c69ece1138 (diff) | |
download | LegacyCamera-272c3fdc60d4b4f773dfdff46ad3dd643ce22d5c.zip LegacyCamera-272c3fdc60d4b4f773dfdff46ad3dd643ce22d5c.tar.gz LegacyCamera-272c3fdc60d4b4f773dfdff46ad3dd643ce22d5c.tar.bz2 |
AI 145048: Code clean up.
Automated import of CL 145048
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/movie_view.xml | 36 |
1 files changed, 17 insertions, 19 deletions
diff --git a/res/layout/movie_view.xml b/res/layout/movie_view.xml index 6344d8b..102f6d7 100644 --- a/res/layout/movie_view.xml +++ b/res/layout/movie_view.xml @@ -18,31 +18,29 @@ android:layout_width="fill_parent" android:layout_height="fill_parent"> - <VideoView - android:id="@+id/surface_view" - android:layout_width="fill_parent" - android:layout_height="fill_parent" - android:layout_centerInParent="true" - /> + <VideoView android:id="@+id/surface_view" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:layout_centerInParent="true" /> <LinearLayout android:id="@+id/progress_indicator" - android:orientation="vertical" - android:layout_centerInParent="true" - android:layout_width="fill_parent" - android:layout_height="wrap_content"> + android:orientation="vertical" + android:layout_centerInParent="true" + android:layout_width="fill_parent" + android:layout_height="wrap_content"> <ProgressBar android:id="@android:id/progress" - style="?android:attr/progressBarStyleLarge" - android:layout_gravity="center" - android:layout_width="wrap_content" - android:layout_height="wrap_content" /> + style="?android:attr/progressBarStyleLarge" + android:layout_gravity="center" + android:layout_width="wrap_content" + android:layout_height="wrap_content" /> <TextView android:paddingTop="5dip" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_gravity="center" - android:text="@string/loading_video" android:textSize="14sp" - android:textColor="#ffffffff" /> + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:text="@string/loading_video" android:textSize="14sp" + android:textColor="#ffffffff" /> </LinearLayout> </RelativeLayout> |