1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?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:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/grey_light_light_light">
- <android.support.design.widget.AppBarLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <com.sheishuo.app.common.views.BaseToolbar
- android:id="@id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="@dimen/action_bar_height"
- app:title="关于谁说"
- app:left_text="返回"/>
- </android.support.design.widget.AppBarLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="16dp"
- android:gravity="center"
- android:orientation="vertical"
- android:background="@color/white">
- <ImageView
- android:layout_width="96dp"
- android:layout_height="96dp"
- android:src="@drawable/logo"/>
- <TextView
- android:id="@+id/mine_about_version_TV"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="版本号:v1.0.0"
- android:padding="16dp"/>
- <TextView
- android:id="@+id/mine_about_agreement_TV"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="谁说用户协议"
- android:visibility="gone"
- android:textColor="#5779ff"/>
- <TextView
- android:id="@+id/mine_about_law_TV"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="国家法律法规"
- android:textColor="#5779ff"
- android:layout_marginTop="16dp"/>
- </LinearLayout>
- <WebView
- android:id="@+id/mine_about_webview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- </LinearLayout>
|