OLD | NEW |
---|---|
(Empty) | |
1 <?xml version="1.0" encoding="utf-8"?> | |
newt (away)
2015/02/17 21:49:07
InfoBarLayout should now have everything you need
melandory
2015/02/18 21:15:33
Done.
| |
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | |
3 Use of this source code is governed by a BSD-style license that can be | |
4 found in the LICENSE file. --> | |
5 | |
6 <LinearLayout | |
7 xmlns:android="http://schemas.android.com/apk/res/android" | |
8 style="?attr/buttonBarStyle" | |
9 android:layout_width="match_parent" | |
10 android:layout_height="wrap_content" | |
11 android:orientation="horizontal" > | |
12 <Button | |
13 android:id="@+id/account_chooser_more" | |
14 android:text="@string/account_chooser_infobar_more_button" | |
15 android:background="?attr/selectableItemBackground" | |
16 style="?attr/buttonBarButtonStyle" | |
17 android:paddingStart="8dp" | |
18 android:paddingEnd="8dp" | |
19 android:layout_width="wrap_content" | |
20 android:layout_height="match_parent" | |
21 android:height="36dp" | |
22 android:gravity="center_vertical|start|end"/> | |
23 <Button | |
24 style="?attr/buttonBarButtonStyle" | |
25 android:text="@string/account_chooser_infobar_no_thanks_button" | |
26 android:id="@+id/account_chooser_no_thanks" | |
27 android:height="36dp" | |
28 android:layout_width="wrap_content" | |
29 android:layout_height="match_parent" | |
30 android:paddingStart="8dp" | |
31 android:paddingEnd="8dp" | |
32 android:background="?attr/selectableItemBackground"/> | |
33 </LinearLayout> | |
OLD | NEW |