Initial
This commit is contained in:
12
app/src/main/res/layout/current_suggestion.xml
Normal file
12
app/src/main/res/layout/current_suggestion.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<TextView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/current_suggestion"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginRight="2dp"
|
||||
android:padding="8dp"
|
||||
android:background="@drawable/suggestion_current_border"
|
||||
android:textFontWeight="600"
|
||||
android:textSize="20dp"
|
||||
android:textColor="@color/current_suggestion" />
|
||||
13
app/src/main/res/layout/suggestion.xml
Normal file
13
app/src/main/res/layout/suggestion.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<TextView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/suggestion"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:padding="8dp"
|
||||
android:background="@drawable/suggestion_border"
|
||||
android:textFontWeight="600"
|
||||
android:textSize="20sp"
|
||||
android:minWidth="40dp"
|
||||
android:textAlignment="center"
|
||||
android:textColor="@color/suggestion" />
|
||||
19
app/src/main/res/layout/suggestions.xml
Normal file
19
app/src/main/res/layout/suggestions.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<HorizontalScrollView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_gravity="bottom"
|
||||
android:theme="@style/Theme.AppCompat.DayNight"
|
||||
android:gravity="bottom"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/suggestions"
|
||||
android:background="@color/black"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
</LinearLayout>
|
||||
</HorizontalScrollView>
|
||||
Reference in New Issue
Block a user