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

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

Issue 2071333002: Keep drawer open in xlarge-land and add float fps (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: FPS -> Render time Created 4 years, 6 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 android:orientation="vertical"
4 android:layout_width="match_parent"
5 android:layout_height="wrap_content">
6
7 <TextView
8 android:layout_width="match_parent"
9 android:layout_height="wrap_content"
10 android:layout_marginTop="10dp"
11 android:layout_marginLeft="10dp"
12 android:layout_marginBottom="0dp"
13 android:textAppearance="?android:attr/textAppearanceLarge"
14 android:text="@string/float_fps" />
15
16 <Switch
17 android:id="@+id/theSwitch"
18 android:layout_width="wrap_content"
19 android:layout_height="wrap_content"
20 android:layout_marginBottom="10dp"
21 android:layout_marginLeft="10dp"
22 android:layout_marginTop="0dp" />
23 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698