2025-05-09 14:57:51 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
2025-05-16 20:28:14 +00:00
|
|
|
android:padding="12dp">
|
2025-05-09 14:57:51 +00:00
|
|
|
|
|
|
|
|
<TextView
|
2025-05-16 20:28:14 +00:00
|
|
|
android:id="@+id/textTitle"
|
|
|
|
|
android:layout_width="wrap_content"
|
2025-05-09 14:57:51 +00:00
|
|
|
android:layout_height="wrap_content"
|
2025-05-16 20:28:14 +00:00
|
|
|
android:text="Título Compacto"
|
2025-05-09 14:57:51 +00:00
|
|
|
android:textStyle="bold"
|
2025-05-16 20:28:14 +00:00
|
|
|
android:textSize="14sp" />
|
2025-05-09 14:57:51 +00:00
|
|
|
|
|
|
|
|
<TextView
|
2025-05-16 20:28:14 +00:00
|
|
|
android:id="@+id/textStatus"
|
2025-05-09 14:57:51 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-05-16 20:28:14 +00:00
|
|
|
android:text="Estado"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textColor="@android:color/darker_gray" />
|
2025-05-09 14:57:51 +00:00
|
|
|
</LinearLayout>
|