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

Side by Side Diff: demos/src/main/res/layout/display_action_bar_item_setting.xml

Issue 1603383003: color, package and action bar configuration. (Closed) Base URL: https://github.com/GoogleChrome/custom-tabs-client.git@master
Patch Set: fixes Created 4 years, 10 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 xmlns:app="http://schemas.android.com/apk/res-auto"
3 xmlns:tools="http://schemas.android.com/tools"
4 android:layout_width="wrap_content"
5 android:layout_height="wrap_content"
6 android:orientation="vertical"
7 android:id="@+id/actiona_bar_item"
8 tools:context=".advanced_ui_setting">
9
10 <LinearLayout
11 android:layout_width="match_parent"
12 android:paddingTop="@dimen/view_vertical_margin"
13 android:orientation="horizontal"
14
15 android:layout_height="@dimen/view_height">
16 <TextView
17 android:id="@+id/item_description"
18 android:layout_width="wrap_content"
19 android:textSize="@dimen/abc_text_size_medium_material"
20 android:layout_height="@dimen/view_height" />
21 <LinearLayout
22 android:orientation="horizontal"
23 android:layout_width="fill_parent"
24 android:layout_height="wrap_content"
25 android:gravity="right" >
26 <Button
27 android:id="@+id/item_delete"
28 android:layout_width="30sp"
29 android:layout_height="wrap_content"
30 android:background="@android:drawable/ic_menu_delete" />
31 </LinearLayout>
32 </LinearLayout>
33
34 <TextView
35 android:id="@+id/item_intent"
36 android:layout_width="match_parent"
37 android:paddingTop="@dimen/view_vertical_margin"
38 android:textSize="@dimen/abc_text_size_medium_material"
39 android:layout_height="@dimen/view_height" />
40
41 <TextView
42 android:id="@+id/item_image_title"
43 android:layout_width="match_parent"
44 android:paddingTop="@dimen/view_vertical_margin"
45 android:textSize="@dimen/abc_text_size_medium_material"
46 android:layout_height="@dimen/view_height" />
47
48 <ImageView
49 android:id="@+id/item_image"
50 android:layout_gravity="center"
51 android:layout_width="100sp"
52 android:layout_height="100sp" />
53 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698