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"
|
2018-06-08 19:19:21 +02:00
|
|
|
android:paddingTop="2dp"
|
2017-04-21 12:15:08 +02:00
|
|
|
tools:context=".plugins.ConstraintsObjectives.ObjectivesFragment">
|
2016-06-04 17:28:05 +02:00
|
|
|
|
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-08-13 11:30:43 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
2016-06-15 21:47:26 +02:00
|
|
|
android:layout_height="wrap_content"
|
2016-08-13 11:30:43 +02:00
|
|
|
android:id="@+id/objectives_fake_layout"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Enable fake time and progress"
|
|
|
|
android:id="@+id/objectives_fake" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Reset"
|
|
|
|
android:id="@+id/objectives_reset"
|
|
|
|
android:textColor="#fef900"
|
|
|
|
android:gravity="right"
|
|
|
|
android:layout_weight="0.5"
|
|
|
|
android:layout_marginRight="10dp" />
|
|
|
|
</LinearLayout>
|
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>
|