- Prepare 'from' and 'to' fields - Setup date field - Update tab text colors
63 lines
2.5 KiB
XML
63 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:background="@drawable/gradient_background"
|
|
app:layout_collapseMode="pin">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_collapseMode="pin"
|
|
android:layout_margin="10dp">
|
|
|
|
<ImageButton
|
|
android:id="@+id/drawer_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/action_settings"
|
|
android:background="@drawable/ic_drawer_white_24dp"
|
|
android:visibility="visible"
|
|
android:layout_gravity="start|center_vertical"
|
|
android:contentDescription="@string/drawer"/>
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
android:text="@string/title_coin_list"
|
|
android:textSize="18sp"
|
|
android:textColor="@color/white"
|
|
android:textStyle="bold"/>
|
|
|
|
</FrameLayout>
|
|
|
|
</android.support.v7.widget.Toolbar>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="?attr/actionBarSize"
|
|
android:background="@drawable/gradient_background"
|
|
android:elevation="0dp">
|
|
|
|
<ListView android:id="@+id/linearLayoutOverview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="?attr/actionBarSize"
|
|
android:orientation="vertical"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:divider="@null"
|
|
android:dividerHeight="0dp"
|
|
android:clipChildren="false"
|
|
android:background="@drawable/list_background"/>
|
|
|
|
</LinearLayout>
|
|
</android.support.constraint.ConstraintLayout> |