36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/main_layout"
|
|
android:background="@drawable/layout_bg_gradient"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".SettingsActivity">
|
|
|
|
<include
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
layout="@layout/layout_toolbar"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_centerHorizontal="true" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fragment_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_below="@id/toolbar">
|
|
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/logo_380"
|
|
android:id="@+id/imageView2"
|
|
android:layout_margin="5dp"
|
|
android:alpha="0.05"
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
</FrameLayout>
|
|
|
|
</RelativeLayout> |