| 12345678910111213141516171819202122232425262728293031323334 |
- <?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"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- tools:context=".ui.My.AboutActivity">
- <com.hjq.bar.TitleBar
- android:id="@+id/tb_about_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- app:title="@string/setting_about" />
- <ImageView
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="85dp"
- android:src="@mipmap/iv_evvm_lcon"
- android:layout_width="166dp"
- android:layout_height="148dp" />
- <TextView
- android:layout_gravity="center_horizontal"
- android:text="版本号 V1.0.1"
- android:gravity="center"
- android:background="@drawable/round_btn"
- android:layout_marginTop="290dp"
- android:layout_width="134dp"
- android:layout_height="32dp" />
- </LinearLayout>
|