Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(563)

Side by Side Diff: platform_tools/android/apps/viewer/src/main/res/layout/activity_main.xml

Issue 1952323004: Initial commit of our new Android app to demo Skia. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Merge Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:tools="http://schemas.android.com/tools"
4 android:id="@+id/mainLayout"
5 android:orientation="vertical"
6 android:layout_width="match_parent"
7 android:layout_height="match_parent"
8 tools:context=".ViewerActivity">
9
10 <SurfaceView
11 android:id="@+id/surfaceView"
12 android:layout_width="match_parent"
13 android:layout_height="match_parent"
14 android:layout_centerVertical="true"
15 android:layout_centerHorizontal="true" />
16
17 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698