|
@@ -0,0 +1,100 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<!--
|
|
|
+ ownCloud Android client application
|
|
|
+
|
|
|
+ Copyright (C) 2016 ownCloud Inc.
|
|
|
+
|
|
|
+ This program is free software: you can redistribute it and/or modify
|
|
|
+ it under the terms of the GNU General Public License version 2,
|
|
|
+ as published by the Free Software Foundation.
|
|
|
+
|
|
|
+ This program is distributed in the hope that it will be useful,
|
|
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
+ GNU General Public License for more details.
|
|
|
+
|
|
|
+ You should have received a copy of the GNU General Public License
|
|
|
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
+ -->
|
|
|
+<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:id="@+id/drawer_layout"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:clickable="true"
|
|
|
+ android:fitsSystemWindows="true">
|
|
|
+
|
|
|
+ <!-- The main content view -->
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <include
|
|
|
+ layout="@layout/toolbar_standard"/>
|
|
|
+
|
|
|
+ <ScrollView
|
|
|
+ android:layout_width="fill_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:id="@+id/scrollView">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="fill_parent"
|
|
|
+ android:layout_height="fill_parent"
|
|
|
+ android:text="@string/participate_header"
|
|
|
+ android:id="@+id/participate_header"
|
|
|
+ android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
+ android:layout_margin="5dp"
|
|
|
+ android:layout_marginBottom="10dp"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="fill_parent"
|
|
|
+ android:layout_height="fill_parent"
|
|
|
+ android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
+ android:text="@string/participate_beta"
|
|
|
+ android:id="@+id/participate_betaView"
|
|
|
+ android:layout_margin="5dp"
|
|
|
+ android:layout_marginBottom="10dp"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="fill_parent"
|
|
|
+ android:layout_height="fill_parent"
|
|
|
+ android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
+ android:text="@string/participate_release_candidate"
|
|
|
+ android:id="@+id/participate_rcView"
|
|
|
+ android:layout_margin="5dp"
|
|
|
+ android:layout_marginBottom="10dp"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="fill_parent"
|
|
|
+ android:layout_height="fill_parent"
|
|
|
+ android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
+ android:text="@string/participate_participate"
|
|
|
+ android:id="@+id/participate_participateView"
|
|
|
+ android:layout_margin="5dp"
|
|
|
+ android:layout_marginBottom="10dp"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
+ android:text="@string/participate_contribute"
|
|
|
+ android:id="@+id/participate_contributeView"
|
|
|
+ android:layout_margin="5dp"
|
|
|
+ android:layout_marginBottom="10dp"/>
|
|
|
+ </LinearLayout>
|
|
|
+ </ScrollView>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <include
|
|
|
+ layout="@layout/drawer"
|
|
|
+ android:layout_width="240dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_gravity="start"/>
|
|
|
+
|
|
|
+</android.support.v4.widget.DrawerLayout>
|