mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
91 lines
No EOL
3.9 KiB
XML
91 lines
No EOL
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="8dp">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_marginBottom="16dp"
|
|
android:baselineAligned="false">
|
|
<LinearLayout
|
|
android:id="@+id/add_habit_button"
|
|
android:orientation="vertical" android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:layout_weight="1">
|
|
<ImageView
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:src="@drawable/fab_plus"
|
|
android:scaleType="center"
|
|
android:background="@drawable/widget_add_habit_background" />
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/add_habit"
|
|
android:layout_marginTop="2dp" />
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:id="@+id/add_daily_button"
|
|
android:orientation="vertical" android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:layout_weight="1">
|
|
<ImageView
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:src="@drawable/fab_plus"
|
|
android:scaleType="center"
|
|
android:background="@drawable/widget_add_daily_background" />
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/add_daily"
|
|
android:layout_marginTop="2dp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:baselineAligned="false">
|
|
<LinearLayout
|
|
android:id="@+id/add_todo_button"
|
|
android:orientation="vertical" android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:layout_weight="1">
|
|
<ImageView
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:src="@drawable/fab_plus"
|
|
android:scaleType="center"
|
|
android:background="@drawable/widget_add_todo_background" />
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/add_todo"
|
|
android:layout_marginTop="2dp" />
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:id="@+id/add_reward_button"
|
|
android:orientation="vertical" android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:layout_weight="1">
|
|
<ImageView
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:src="@drawable/fab_plus"
|
|
android:scaleType="center"
|
|
android:background="@drawable/widget_add_reward_background" />
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/add_reward"
|
|
android:layout_marginTop="2dp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</LinearLayout> |