summaryrefslogtreecommitdiffstats
path: root/res/layout/camera.xml
diff options
context:
space:
mode:
authorAngus Kong <shkong@google.com>2013-04-09 15:02:59 -0700
committerAngus Kong <shkong@google.com>2013-04-11 10:42:33 -0700
commit19fb00429458fa3e01d0d5a244f5b31150c76cc5 (patch)
tree3ba6c2ef7ac3f4c1321ceb6f96bef912dcb7c885 /res/layout/camera.xml
parent6ff650fd8ef417e5bdd181ebad0cbfa15fdb25c6 (diff)
downloadandroid_packages_apps_Snap-19fb00429458fa3e01d0d5a244f5b31150c76cc5.tar.gz
android_packages_apps_Snap-19fb00429458fa3e01d0d5a244f5b31150c76cc5.tar.bz2
android_packages_apps_Snap-19fb00429458fa3e01d0d5a244f5b31150c76cc5.zip
Integrate FilmStripView.
Change-Id: Ib9f280a4c58a5c120775d5e9340ea04d56c0343d
Diffstat (limited to 'res/layout/camera.xml')
-rw-r--r--res/layout/camera.xml14
1 files changed, 10 insertions, 4 deletions
diff --git a/res/layout/camera.xml b/res/layout/camera.xml
index a84923415..b4ec436c6 100644
--- a/res/layout/camera.xml
+++ b/res/layout/camera.xml
@@ -13,9 +13,15 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<com.android.camera.ui.NewCameraRootView
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/camera_app_root"
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
-</com.android.camera.ui.NewCameraRootView> \ No newline at end of file
+ <!-- NewCameraRootView needs to be in a FrameLayout to set margins
+ in the layout parameters. -->
+ <com.android.camera.ui.NewCameraRootView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/camera_app_root"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" >
+ </com.android.camera.ui.NewCameraRootView>
+</FrameLayout>