mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
24 lines
No EOL
847 B
XML
24 lines
No EOL
847 B
XML
<androidx.cardview.widget.CardView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/cardview"
|
|
android:layout_width="100dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="1dp"
|
|
card_view:cardBackgroundColor="#FF9800"
|
|
card_view:cardCornerRadius="7dp"
|
|
card_view:cardElevation="7dp"
|
|
card_view:contentPadding="7dp">
|
|
|
|
<TextView
|
|
android:id="@+id/textview1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="3dp"
|
|
android:layout_marginBottom="3dp"
|
|
android:textColor="#fff"
|
|
android:textSize="20dp"
|
|
android:textStyle="bold" />
|
|
|
|
</androidx.cardview.widget.CardView> |