mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-11-14 14:32:49 +01:00
22 lines
815 B
XML
22 lines
815 B
XML
|
<?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:textColor="@color/primaryTextColor"
|
||
|
android:textSize="16sp" />
|
||
|
|
||
|
<CustomView.CustomMarkwonView
|
||
|
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" />
|
||
|
|
||
|
</LinearLayout>
|