|
@@ -1,24 +1,32 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
- xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
|
|
+ android:orientation="horizontal"
|
|
|
|
|
+ android:padding="@dimen/padding"
|
|
|
android:layout_height="wrap_content">
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<Button
|
|
<Button
|
|
|
android:id="@+id/createBtn"
|
|
android:id="@+id/createBtn"
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_below="@+id/info"
|
|
|
|
|
- android:layout_marginBottom="150dp"
|
|
|
|
|
- android:layout_marginLeft="10dp"
|
|
|
|
|
- android:layout_marginRight="10dp"
|
|
|
|
|
- android:layout_marginTop="20dp"
|
|
|
|
|
android:background="@drawable/bg_bule_btn"
|
|
android:background="@drawable/bg_bule_btn"
|
|
|
android:padding="10dp"
|
|
android:padding="10dp"
|
|
|
android:text="@string/oacreat_calender"
|
|
android:text="@string/oacreat_calender"
|
|
|
|
|
+ android:layout_marginRight="@dimen/padding"
|
|
|
|
|
+ android:textColor="@color/white"
|
|
|
|
|
+ android:textSize="@dimen/text_main"/>
|
|
|
|
|
+
|
|
|
|
|
+ <Button
|
|
|
|
|
+ android:id="@+id/createBookBtn"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:layout_marginLeft="@dimen/padding"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_below="@+id/info"
|
|
|
|
|
+ android:background="@drawable/bg_bule_btn"
|
|
|
|
|
+ android:padding="10dp"
|
|
|
|
|
+ android:text="@string/create_books"
|
|
|
android:textColor="@color/white"
|
|
android:textColor="@color/white"
|
|
|
- android:textSize="@dimen/text_main"
|
|
|
|
|
- app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
- app:layout_constraintRight_toRightOf="parent"
|
|
|
|
|
- app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
-</android.support.constraint.ConstraintLayout>
|
|
|
|
|
|
|
+ android:textSize="@dimen/text_main" />
|
|
|
|
|
+</LinearLayout>
|