Commit 94bc1c5b authored by 小费同学阿's avatar 小费同学阿 💬

添加功能:

隐私条款已知晓按钮bug修复
parent ff661f51
......@@ -34,42 +34,44 @@
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="510dp"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/bg_grey">
<WebView
android:id="@+id/web_comm"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
tools:ignore="WebViewLayout" />
</androidx.core.widget.NestedScrollView>
<!-- <View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/line_grey"/>-->
</androidx.core.widget.NestedScrollView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_gravity="center"
android:gravity="center"
android:orientation="horizontal">
<Button
android:id="@+id/btn_refuse"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_gravity="center"
android:gravity="center"
android:layout_weight="1"
android:background="#00000000"
android:onClick="@{dialog.refuseClick}"
android:text="@{model.refuseTxt.toString()}"
android:text="@{model.sureTxt.toString()}"
android:textColor="@color/text_grey"
android:textSize="16sp"
android:visibility="@{model.refuseTxt==null? View.GONE : View.VISIBLE}" />
<Button
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_gravity="center"
android:gravity="center"
android:layout_weight="1"
android:background="#00000000"
android:onClick="@{dialog.acceptClick}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment