Index: chrome/android/java/res/layout/account_chooser_infobar_buttonbar.xml |
diff --git a/chrome/android/java/res/layout/account_chooser_infobar_buttonbar.xml b/chrome/android/java/res/layout/account_chooser_infobar_buttonbar.xml |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f1aa57f8a0c857b52138cec1245a13143516a228 |
--- /dev/null |
+++ b/chrome/android/java/res/layout/account_chooser_infobar_buttonbar.xml |
@@ -0,0 +1,33 @@ |
+<?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.
|
+<!-- Copyright 2015 The Chromium Authors. All rights reserved. |
+ Use of this source code is governed by a BSD-style license that can be |
+ found in the LICENSE file. --> |
+ |
+<LinearLayout |
+ xmlns:android="http://schemas.android.com/apk/res/android" |
+ style="?attr/buttonBarStyle" |
+ android:layout_width="match_parent" |
+ android:layout_height="wrap_content" |
+ android:orientation="horizontal" > |
+ <Button |
+ android:id="@+id/account_chooser_more" |
+ android:text="@string/account_chooser_infobar_more_button" |
+ android:background="?attr/selectableItemBackground" |
+ style="?attr/buttonBarButtonStyle" |
+ android:paddingStart="8dp" |
+ android:paddingEnd="8dp" |
+ android:layout_width="wrap_content" |
+ android:layout_height="match_parent" |
+ android:height="36dp" |
+ android:gravity="center_vertical|start|end"/> |
+ <Button |
+ style="?attr/buttonBarButtonStyle" |
+ android:text="@string/account_chooser_infobar_no_thanks_button" |
+ android:id="@+id/account_chooser_no_thanks" |
+ android:height="36dp" |
+ android:layout_width="wrap_content" |
+ android:layout_height="match_parent" |
+ android:paddingStart="8dp" |
+ android:paddingEnd="8dp" |
+ android:background="?attr/selectableItemBackground"/> |
+</LinearLayout> |