53 lines
2.1 KiB
XML
53 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.design.widget.CoordinatorLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/color_background"
|
|
tools:context=".activities.MainActivity">
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:id="@+id/appBarLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal">
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="170dp"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:background="@color/color_background"
|
|
android:baselineAligned="false"
|
|
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/SongView"
|
|
android:layout_width="1dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
tools:srcCompat="@tools:sample/backgrounds/scenic[6]" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/SettingsLink"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/color_background"
|
|
android:layout_weight="1"
|
|
android:contentDescription="@string/settings_link"
|
|
app:srcCompat="@android:drawable/ic_menu_manage" />
|
|
</LinearLayout>
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<include
|
|
android:id="@+id/include"
|
|
layout="@layout/content_main" />
|
|
|
|
</android.support.design.widget.CoordinatorLayout> |