0元购Android端

dialog_update.xml 2.3KB

    <?xml version="1.0" encoding="utf-8"?> <RelativeLayout 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:background="@color/black_trans"> <!--Body--> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:background="@android:color/white" android:gravity="center_horizontal" android:orientation="vertical" android:clickable="true" android:paddingLeft="15dp" android:paddingTop="15dp" android:paddingRight="15dp" android:paddingBottom="30dp"> <TextView android:id="@+id/tv_info_importance" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dp" android:text="@string/update_app_title" android:textColor="@color/app_color_333" android:textSize="20sp" /> <ProgressBar android:id="@+id/pb_update" style="?android:attr/progressBarStyleHorizontal" android:layout_width="250dp" android:layout_height="30dp" android:layout_centerHorizontal="true" android:max="100" android:progress="0" android:progressDrawable="@drawable/progress_update_blue" /> <TextView android:id="@+id/tv_update" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:gravity="center" android:singleLine="true" android:text="" android:textColor="@color/app_color_333" /> <Button android:id="@+id/handle_install" android:layout_width="278dp" android:layout_height="45dp" android:layout_marginTop="10dp" android:background="@drawable/bg_login_btn" android:gravity="center" android:singleLine="true" android:text="手动安装" android:textColor="@color/app_color_white" android:textSize="15sp" android:visibility="visible" /> </LinearLayout> </RelativeLayout>