aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/item_rule.xml
blob: 1003f6c57868d996832a0a6b7ed660e02b9c85c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <TextView
        android:id="@+id/short_name_text_view_item_rule"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="16dp"
        android:textSize="?attr/title_font_16"
        android:fontFamily="?attr/font_family" />

    <TextView
        android:id="@+id/description_markwon_view_item_rule"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="16dp"
        android:paddingStart="16dp"
        android:paddingEnd="16dp"
        android:textSize="?attr/content_font_default"
        android:fontFamily="?attr/font_family" />

</LinearLayout>