1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00

Ensure links have a minimum height of 48dp

This commit is contained in:
Christophe Beyls 2017-01-06 03:26:55 +01:00
parent 640c304735
commit 9e4efd69e2

View file

@ -1,10 +1,12 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<TextView <TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/description" android:id="@+id/description"
style="@style/TextAppearance.AppCompat.Menu" style="@style/TextAppearance.AppCompat.Menu"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="?attr/selectableItemBackground" android:background="?attr/selectableItemBackground"
android:focusable="true" android:focusable="true"
android:gravity="start|center_vertical"
android:minHeight="48dp"
android:padding="@dimen/list_item_padding"/> android:padding="@dimen/list_item_padding"/>