mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2025-03-17 18:43:59 +01:00
23 lines
900 B
XML
23 lines
900 B
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?selectableItemBackground"
|
|
android:paddingStart="16dp"
|
|
android:paddingTop="10dp"
|
|
android:paddingEnd="16dp"
|
|
android:paddingBottom="10dp">
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:id="@+id/messagePreviewAttachment"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:drawablePadding="10dp"
|
|
android:visibility="gone"
|
|
app:drawableStartCompat="@drawable/ic_attachment"
|
|
app:drawableTint="?colorOnBackground"
|
|
tools:text="@tools:sample/lorem"
|
|
tools:visibility="visible" />
|
|
</LinearLayout>
|