VidiDin-Android/app/src/main/res/layout/activity_privacy.xml

30 lines
879 B
XML
Raw Normal View History

2025-11-25 07:51:19 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
2025-12-04 03:30:37 +00:00
android:background="@color/white"
2025-11-25 07:51:19 +00:00
android:id="@+id/content_root" >
<com.ama.core.architecture.widget.CustomTitleBar
android:id="@+id/titlebar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
2025-12-04 03:27:27 +00:00
<FrameLayout
2025-11-25 07:51:19 +00:00
android:layout_width="match_parent"
2025-12-04 03:27:27 +00:00
android:layout_height="0dp"
android:layout_weight="1"
android:layout_marginHorizontal="15dp" >
<WebView
android:id="@+id/web_view"
2025-11-25 07:51:19 +00:00
android:layout_width="match_parent"
2025-12-04 03:27:27 +00:00
android:layout_height="match_parent"
2025-11-25 07:51:19 +00:00
/>
2025-12-04 03:27:27 +00:00
</FrameLayout>
2025-11-25 07:51:19 +00:00
</LinearLayout>