mirror of
https://github.com/wismna/DoNext.git
synced 2025-10-03 15:40:14 -04:00

Creation of an ArrayAdapter to handle selection for the above Moved code out of Today Activity into Today Form where it belonged Replaced TaskFragment Coordinator Layout with a Frame Layout Re-moved the Floating Action Button into the Activities out of Task Fragment Simplification of Preferences
19 lines
863 B
XML
19 lines
863 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true">
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
<include layout="@layout/toolbar" android:id="@+id/dialog_toolbar" />
|
|
</android.support.design.widget.AppBarLayout>
|
|
<!-- This will contain the actual contents of the dialog -->
|
|
<FrameLayout
|
|
android:id="@+id/dynamic_fragment_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
</android.support.design.widget.CoordinatorLayout> |