From 478c669566e9b0cb41018464a13a4410f19c797f Mon Sep 17 00:00:00 2001 From: "James.cf Lin" Date: Wed, 21 Mar 2018 11:35:23 +0800 Subject: [PATCH] Fix the first link is not visible in the supported links The padding property of ListView covered the first tiem. Fixes: 67878448 Test: manual test Change-Id: Ic60d625964cf666f70fd935bb7163018614023c3 --- res/layout/app_domains_dialog.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/res/layout/app_domains_dialog.xml b/res/layout/app_domains_dialog.xml index d006027451b..4a55263475c 100644 --- a/res/layout/app_domains_dialog.xml +++ b/res/layout/app_domains_dialog.xml @@ -22,5 +22,8 @@ android:layout_height="match_parent" android:divider="@null" android:scrollbarStyle="insideOverlay" - android:padding="24dp" /> + android:paddingTop="6dp" + android:paddingBottom="24dp" + android:paddingLeft="24dp" + android:paddingRight="24dp" />