23 lines
687 B
XML
23 lines
687 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:cardBackgroundColor="#F5F5F5"
|
|
app:cardElevation="4dp"
|
|
app:cardCornerRadius="4dp"
|
|
android:id="@+id/listviewauthinfoCardView1"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Text"
|
|
android:id="@+id/viewitemauthinfoTextView1"
|
|
android:padding="5dp"/>
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|