DroidFS/app/src/main/res/layout/adapter_dialog_icon_text.xml

21 lines
679 B
XML
Raw Normal View History

2020-07-17 16:35:39 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
2021-11-09 11:12:09 +01:00
<ImageView
2020-07-17 16:35:39 +02:00
android:id="@+id/icon"
android:layout_width="50dp"
android:layout_height="50dp"
2020-08-05 14:06:54 +02:00
android:layout_marginStart="20dp"
android:layout_marginEnd="5dp"/>
2020-07-17 16:35:39 +02:00
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2020-07-27 16:20:52 +02:00
android:textSize="@dimen/adapter_text_size"
2020-07-17 16:35:39 +02:00
android:layout_gravity="center"/>
</LinearLayout>