TachiyomiSY-Plus/app/src/main/res/layout/metadata_view_item.xml
2020-10-26 14:28:56 -04:00

22 lines
850 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp">
<com.google.android.material.textview.MaterialTextView
android:id="@+id/info_title"
android:layout_width="140dp"
android:layout_height="match_parent"
android:layout_marginStart="8dp"
style="@style/TextAppearance.Regular.Body1" />
<com.google.android.material.textview.MaterialTextView
android:id="@+id/info_text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:layout_marginStart="8dp"
style="@style/TextAppearance.Regular.Body1.Secondary" />
</LinearLayout>