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-07 13:07:13 +02:00
|
|
|
android:id="@+id/objectives_fake" />
|
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>
|