2020-03-18 14:18:59 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:minHeight="40dp">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/support_faq"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_marginStart="26dp"
|
|
|
|
|
android:layout_marginEnd="29dp"/>
|
2020-03-18 14:18:59 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/text_view"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textSize="14sp"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_secondary"
|
2020-03-18 14:18:59 +00:00
|
|
|
tools:text="Title"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_marginEnd="@dimen/spacing_large"
|
2020-03-18 14:18:59 +00:00
|
|
|
android:layout_marginTop="@dimen/spacing_medium"
|
|
|
|
|
android:layout_marginBottom="@dimen/spacing_medium"
|
|
|
|
|
/>
|
|
|
|
|
</LinearLayout>
|