mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
19 lines
787 B
XML
19 lines
787 B
XML
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/toast_layout_root"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="5dp"
|
|
app:cardCornerRadius="10dp"
|
|
app:cardBackgroundColor="?attr/primaryBlackBackground"
|
|
android:background="?attr/primaryBlackBackground">
|
|
|
|
<TextView
|
|
android:padding="20dp"
|
|
android:id="@+id/text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:textColor="?attr/textColor" />
|
|
|
|
</androidx.cardview.widget.CardView>
|