Files
qianyanAndroid/app/src/main/res/layout/dialog_updatewx.xml
被淹死的鱼 cd3b53759e 第一次提交
2026-03-11 18:26:29 +08:00

55 lines
2.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:gravity="center_horizontal"
android:background="@drawable/shape_downloader"
android:layout_margin="30dp"
android:layout_height="match_parent">
<TextView
android:layout_marginTop="20dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="36dp"
android:layout_marginRight="36dp"
android:lineSpacingExtra="3dp"
android:text="已认证的微信号不能自行修改!如要进行修改,请联系在线客服。"
android:textColor="#ff333333"
android:textSize="14sp"
/>
<View
android:layout_marginTop="20dp"
android:background="#D9D9D9"
android:layout_width="match_parent"
android:layout_height="1dp"/>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="52dp">
<TextView
android:id="@+id/cancelBtn"
android:gravity="center"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="联系客服"
android:textColor="#ff999999"
android:textSize="14sp"
/>
<View
android:background="#D9D9D9"
android:layout_width="1dp"
android:layout_height="match_parent"/>
<TextView
android:id="@+id/confirmBtn"
android:gravity="center"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="知道了"
android:textColor="#ff333333"
android:textSize="14sp"
/>
</LinearLayout>
</LinearLayout>