30 lines
970 B
XML
30 lines
970 B
XML
<!-- custom_dialog_layout.xml -->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<TextView
|
|
android:layout_width="265dp"
|
|
android:layout_height="48dp"
|
|
android:ellipsize="end"
|
|
android:fontFamily="@font/poppins_bold"
|
|
android:gravity="center|start"
|
|
android:singleLine="true"
|
|
android:text="Scanlators"
|
|
android:textColor="?attr/colorOnBackground"
|
|
android:textSize="16sp" />
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/checkboxContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" />
|
|
</ScrollView>
|
|
|
|
</LinearLayout>
|