mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-07-26 06:02:13 -05:00
49 lines
2.1 KiB
XML
49 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"
|
|
android:id="@+id/coordinator_main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:id="@+id/appbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar_main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
|
|
app:layout_scrollFlags="scroll|enterAlways"/>
|
|
|
|
<android.support.design.widget.TabLayout
|
|
android:id="@+id/tabs_platforms"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:tabTextAppearance="@style/MyCustomTextAppearance"
|
|
app:tabMode="fixed"
|
|
app:tabGravity="fill"/>
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<android.support.v4.view.ViewPager
|
|
android:id="@+id/pager_platforms"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
android:id="@+id/button_add_directory"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_margin="16dp"
|
|
android:src="@drawable/ic_add"
|
|
app:borderWidth="0dp"
|
|
app:rippleColor="?android:colorPrimaryDark"
|
|
app:layout_anchor="@+id/pager_platforms"
|
|
app:layout_anchorGravity="bottom|right|end"/>
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|