29 lines
1,015 B
XML
29 lines
1,015 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<Spinner
|
|
android:id="@+id/spinner"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="5dp" />
|
|
|
|
<Button
|
|
android:id="@+id/profileswitch"
|
|
style="?android:attr/buttonStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:text="@string/activate_profile"
|
|
android:textColor="@color/colorProfileSwitchButton" />
|
|
|
|
<include
|
|
android:id="@+id/profileviewer"
|
|
layout="@layout/profileviewer_fragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
</LinearLayout> |