123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <ScrollView
- android:id="@+id/scroll_layout"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- android:paddingLeft="24dp"
- android:paddingRight="24dp"
- android:scrollbarStyle="outsideOverlay">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <ImageView
- android:id="@+id/divider"
- android:layout_width="match_parent"
- android:layout_height="16dp" />
- <LinearLayout
- android:id="@+id/name_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="@dimen/upsdk_margin_xs"
- android:orientation="horizontal">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/upsdk_ota_app_name"
- android:textColor="@color/upsdk_color_gray_10"
- android:textSize="@dimen/upsdk_master_subtitle" />
- <TextView
- android:id="@+id/name_textview"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/upsdk_margin_m"
- android:layout_marginLeft="@dimen/upsdk_margin_m"
- android:fontFamily="HwChinese-medium"
- android:textColor="@color/upsdk_color_gray_10"
- android:textSize="@dimen/upsdk_master_subtitle" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/version_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="@dimen/upsdk_margin_xs"
- android:orientation="horizontal">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/upsdk_app_version"
- android:textColor="@color/upsdk_color_gray_10"
- android:textSize="@dimen/upsdk_master_subtitle" />
- <TextView
- android:id="@+id/version_textview"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/upsdk_margin_m"
- android:layout_marginLeft="@dimen/upsdk_margin_m"
- android:fontFamily="HwChinese-medium"
- android:textColor="@color/upsdk_color_gray_10"
- android:textSize="@dimen/upsdk_master_subtitle" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/size_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/upsdk_app_size"
- android:textColor="@color/upsdk_color_gray_10"
- android:textSize="@dimen/upsdk_master_subtitle" />
- <TextView
- android:id="@+id/appsize_textview"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/upsdk_margin_m"
- android:layout_marginLeft="@dimen/upsdk_margin_m"
- android:fontFamily="HwChinese-medium"
- android:textColor="@color/upsdk_color_gray_10"
- android:textSize="@dimen/upsdk_master_subtitle" />
- <TextView
- android:id="@+id/allsize_textview"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/upsdk_margin_m"
- android:layout_marginLeft="@dimen/upsdk_margin_m"
- android:fontFamily="HwChinese-medium"
- android:textColor="@color/upsdk_color_gray_10"
- android:textSize="@dimen/upsdk_master_subtitle" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/content_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/upsdk_margin_l"
- android:gravity="start"
- android:text="@string/upsdk_detail"
- android:textAlignment="viewStart"
- android:textColor="@color/upsdk_color_gray_10"
- android:textSize="@dimen/upsdk_master_subtitle" />
- <TextView
- android:id="@+id/content_textview"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/upsdk_margin_m"
- android:gravity="start"
- android:lineSpacingMultiplier="1.1"
- android:textAlignment="viewStart"
- android:textColor="@color/upsdk_color_gray_10"
- android:textSize="@dimen/upsdk_master_body_2" />
- </LinearLayout>
- </LinearLayout>
- </ScrollView>
- </LinearLayout>
- </LinearLayout>
|