summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2016-10-25 00:59:06 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2016-10-25 00:59:06 +0000
commit7769221ffa38608eb6d64301e188083aff20ece0 (patch)
tree4c6d200d733c62b5967a13d9749af175bf9b98b2 /res/layout
parent1b11128bc5e45144664633996d785b57419683e9 (diff)
parent3bc4727604aa6b8cc80f79df30236bc78c6abf2b (diff)
downloadplatform_packages_apps_Car_Dialer-7769221ffa38608eb6d64301e188083aff20ece0.tar.gz
platform_packages_apps_Car_Dialer-7769221ffa38608eb6d64301e188083aff20ece0.tar.bz2
platform_packages_apps_Car_Dialer-7769221ffa38608eb6d64301e188083aff20ece0.zip
Merge "Fix bug where clicks on the dialer would fall through to the underlying fragment."
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/dialer_fragment.xml3
1 files changed, 3 insertions, 0 deletions
diff --git a/res/layout/dialer_fragment.xml b/res/layout/dialer_fragment.xml
index 1cacbbee..c3c432f8 100644
--- a/res/layout/dialer_fragment.xml
+++ b/res/layout/dialer_fragment.xml
@@ -22,8 +22,11 @@
android:layout_height="match_parent"
android:paddingTop="@dimen/lens_header_height">
+ <!-- This LinearLayout is clickable so that clicks do not fall through to the fragment that
+ is underneath the dialer_fragment. -->
<LinearLayout
android:background="@color/car_card"
+ android:clickable="true"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="@dimen/dial_container_vertical_margin"