aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/room_player_data_item.xml
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-04-30 13:40:14 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-04-30 13:40:14 -0600
commit47ffcc64c0d443b16169f43848f1453ca8144031 (patch)
tree954a747334ec74dca23593572343cdf639e12117 /app/src/main/res/layout/room_player_data_item.xml
parent9e2a0fe9d72bab97c2cd69ff6994148eda22fd35 (diff)
downloadwiimmfi-watcher-47ffcc64c0d443b16169f43848f1453ca8144031.tar
wiimmfi-watcher-47ffcc64c0d443b16169f43848f1453ca8144031.tar.gz
wiimmfi-watcher-47ffcc64c0d443b16169f43848f1453ca8144031.tar.bz2
finished designing fragments, need to start programming them soon
Diffstat (limited to 'app/src/main/res/layout/room_player_data_item.xml')
-rw-r--r--app/src/main/res/layout/room_player_data_item.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/app/src/main/res/layout/room_player_data_item.xml b/app/src/main/res/layout/room_player_data_item.xml
new file mode 100644
index 0000000..e6e6ed8
--- /dev/null
+++ b/app/src/main/res/layout/room_player_data_item.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="utf-8"?>
+<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_margin="16dp">
+
+ <LinearLayout
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:padding="10dp">
+
+ <TextView
+ android:id="@+id/roster_number"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="1. " />
+
+ <TextView
+ android:id="@+id/mii_names"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="bryson" />
+
+ </LinearLayout>
+
+ <TextView
+ android:id="@+id/variable_side_data"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_margin="10dp"
+ android:text="0000-0000-0000"
+ tools:textAlignment="viewEnd" />
+
+</com.google.android.material.card.MaterialCardView> \ No newline at end of file