1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <android.support.design.widget.AppBarLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <com.shuishuo.app.common.views.BaseToolbar
- android:id="@id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="@dimen/action_bar_height"
- app:left_text="取消"
- app:right_text="完成"
- app:title="添加照片" />
- </android.support.design.widget.AppBarLayout>
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <GridLayout
- android:id="@+id/grid_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:columnCount="3" />
- </ScrollView>
- </LinearLayout>
|