| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center_horizontal"
- android:orientation="vertical">
- <ImageView
- android:layout_width="64dp"
- android:layout_height="64dp"
- android:layout_marginTop="50dp"
- android:src="@mipmap/icon" />
- <TextView
- android:id="@+id/version_upgrade_oldVersion_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="10dp"
- android:textColor="#333333"
- android:textSize="16sp"
- tools:text="Version 1.0.0" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="16dp"
- android:layout_marginRight="16dp"
- android:orientation="horizontal"
- android:padding="16dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="最新版本:"
- android:textColor="#666666"
- android:textSize="14sp" />
- <TextView
- android:id="@+id/version_upgrade_newVersion_tv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textColor="#333333"
- android:textSize="14sp"
- tools:text="V1.1.1" />
- </LinearLayout>
- <View
- style="@style/view_gray_line"
- android:layout_marginLeft="26dp"
- android:layout_marginRight="26dp"
- android:background="#cccccc" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="16dp"
- android:layout_marginRight="16dp"
- android:orientation="horizontal"
- android:padding="16dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="更新内容:"
- android:textColor="#666666"
- android:textSize="14sp" />
- <TextView
- android:id="@+id/version_upgrade_msg_tv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:lineSpacingExtra="4dp"
- android:maxHeight="240dp"
- android:textColor="#333333"
- android:textSize="14sp"
- tools:text="解决已知bug解决已知bug解决已知bug
- 解决已知bug解决已知bug解决已知bug解决
- 已知bug解决已知bug解决已知bug解决已知bug解决已知bug解决已知bug" />
- </LinearLayout>
- <View
- style="@style/view_gray_line"
- android:layout_marginLeft="26dp"
- android:layout_marginRight="26dp"
- android:background="#cccccc" />
- <View
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1" />
- <Button
- android:id="@+id/version_upgrade_upgrade_btn"
- style="@style/ButtonStyle"
- android:layout_margin="32dp"
- android:visibility="visible"
- android:text="下载新版本 " />
- </LinearLayout>
|