forked from penguin86/luna-tracker
The setting allows to build the menu and popup list to be populated by the frequency of events that has been created. This also makes the 'no breastfeeding' setting irrelevant.
26 lines
941 B
XML
26 lines
941 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="10dp"
|
|
android:background="@color/transparent">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/layout_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/button_statistics"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="10dp"
|
|
android:background="@drawable/dropdown_list_item_background"
|
|
style="@style/OverflowMenuText"
|
|
android:text="📊 Statistics"/>
|
|
|
|
<!-- Other buttons are inserted dynamically -->
|
|
</LinearLayout>
|
|
|
|
</ScrollView> |