AndroidAPS/app/src/main/res/layout/objectives_fragment.xml

29 lines
961 B
XML
Raw Normal View History

2016-06-04 17:28:05 +02:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".plugins.Objectives.ObjectivesFragment">
2016-06-15 21:47:26 +02:00
<LinearLayout
android:orientation="vertical"
2016-06-04 17:28:05 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent">
2016-06-15 21:47:26 +02:00
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2016-06-27 18:48:48 +02:00
android:text="Enable fake time and progress"
2016-08-04 23:38:43 +02:00
android:id="@+id/objectives_fake"
android:visibility="gone" />
2016-06-15 21:47:26 +02:00
<android.support.v7.widget.RecyclerView
android:id="@+id/objectives_recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>
</LinearLayout>
2016-06-04 17:28:05 +02:00
</FrameLayout>