aboutsummaryrefslogtreecommitdiff
path: root/platform_tools/android/apps/arcore/src/main/res/layout-xlarge-land/activity_main.xml
diff options
context:
space:
mode:
authorziadb <ziadb@google.com>2018-06-19 13:57:15 -0400
committerZiad Ben Hadj-Alouane <ziadb@google.com>2018-06-19 19:10:54 +0000
commitbceddbcb72605343aca01638f64d7a8e8cb9792d (patch)
treeed4eaaec1011ca860cd2c750c2f241472543824b /platform_tools/android/apps/arcore/src/main/res/layout-xlarge-land/activity_main.xml
parent80452bee11ebe6708ea459ea34e526a44c04bdb0 (diff)
downloadskqp-bceddbcb72605343aca01638f64d7a8e8cb9792d.tar.gz
SkAR: drawing text, shapes, rotation modes enabled, translating objects
To run this app, you need to create an out directory as such: bin/gn gen out/arm64 --args='ndk="NDK_PATH" target_cpu="ABI"' For now, the only supported ABI is arm64 Change-Id: I012f0c6a0550d80a0028f42177d5ca72974d848d Bug: skia: Reviewed-on: https://skia-review.googlesource.com/130980 Reviewed-by: Mike Reed <reed@google.com> Reviewed-by: Mike Klein <mtklein@google.com> Commit-Queue: Ziad Ben Hadj-Alouane <ziadb@google.com>
Diffstat (limited to 'platform_tools/android/apps/arcore/src/main/res/layout-xlarge-land/activity_main.xml')
-rw-r--r--platform_tools/android/apps/arcore/src/main/res/layout-xlarge-land/activity_main.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/platform_tools/android/apps/arcore/src/main/res/layout-xlarge-land/activity_main.xml b/platform_tools/android/apps/arcore/src/main/res/layout-xlarge-land/activity_main.xml
new file mode 100644
index 0000000000..49457c9802
--- /dev/null
+++ b/platform_tools/android/apps/arcore/src/main/res/layout-xlarge-land/activity_main.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="horizontal"
+ android:layout_width="match_parent"
+ android:background="@android:color/darker_gray"
+ android:layout_height="match_parent">
+
+ <!-- The navigation drawer that's always open -->
+ <ListView android:id="@+id/leftDrawer"
+ android:layout_width="240dp"
+ android:layout_height="match_parent"
+ android:layout_gravity="start"
+ android:choiceMode="singleChoice"
+ android:divider="@android:color/transparent"
+ android:dividerHeight="0dp"
+ android:layout_marginRight="5dp"
+ android:background="@android:color/background_light"/>
+
+ <!-- The main content view -->
+ <RelativeLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <!-- We use mainLayout for recreating SurfaceView -->
+ <LinearLayout
+ android:id="@+id/mainLayout"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+ <SurfaceView
+ android:id="@+id/surfaceView"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_centerVertical="true"
+ android:layout_centerHorizontal="true" />
+ </LinearLayout>
+ </RelativeLayout>
+
+</LinearLayout>
+