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

Unified Diff: chrome/android/java/res/layout/account_chooser_dialog_item.xml

Issue 2541693004: Add Information Tooltip for Public Suffix List Matches (Closed)
Patch Set: Addressed new set of comments. Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/res/layout/account_chooser_dialog_item.xml
diff --git a/chrome/android/java/res/layout/account_chooser_dialog_item.xml b/chrome/android/java/res/layout/account_chooser_dialog_item.xml
index 41875eca79a4c77c33d5a6b6f413688a9f7a003f..11d80daa0e3d69b56f43955200b716bfc798b9ec 100644
--- a/chrome/android/java/res/layout/account_chooser_dialog_item.xml
+++ b/chrome/android/java/res/layout/account_chooser_dialog_item.xml
@@ -43,4 +43,19 @@
android:textColor="@color/descriptive_text_color"
android:textSize="@dimen/account_chooser_dialog_title_descriptive_text_size"/>
</LinearLayout>
+ <!-- Needed to make the following ImageButton align to the right. -->
+ <Space
+ android:layout_width="0dp"
+ android:layout_height="0dp"
+ android:layout_weight="1" />
+ <ImageButton
+ android:id="@+id/psl_info_btn"
+ android:layout_gravity="center_vertical"
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:background="?attr/selectableItemBackground"
+ android:contentDescription="@null"
+ android:padding="@dimen/psl_info_btn_padding"
+ android:src="@drawable/btn_info"
+ android:visibility="gone"/>
</LinearLayout>

Powered by Google App Engine
This is Rietveld 408576698