2024-05-16 15:55:18 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
<LinearLayout
|
2024-05-30 13:43:17 +00:00
|
|
|
android:layout_width="match_parent"
|
2024-05-16 15:55:18 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:padding="17dp"
|
|
|
|
|
android:background="@drawable/layout_rounded_bg_window"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:layout_marginHorizontal="20dp">
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/title_view"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/Body1"
|
|
|
|
|
android:textColor="?textColorPrimary"
|
|
|
|
|
tools:text="Test Title"
|
|
|
|
|
android:layout_marginBottom="3dp"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/description_view"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:maxWidth="300dp"
|
|
|
|
|
style="@style/Body2"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:textColor="?textColorSecondary"
|
|
|
|
|
tools:text="Test Description"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</FrameLayout>
|