2025-12-14 08:25:59 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout 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:orientation="vertical"
|
|
|
|
|
android:background="@color/white">
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
|
android:id="@+id/detail_toolbar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
|
android:background="@color/kbs_very_light_blue"
|
|
|
|
|
android:elevation="4dp"
|
|
|
|
|
app:navigationIcon="@android:drawable/ic_menu_revert"
|
|
|
|
|
app:titleTextColor="@color/black" />
|
|
|
|
|
|
2025-12-14 13:15:26 +01:00
|
|
|
<RelativeLayout
|
2025-12-14 08:25:59 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
2025-12-14 13:15:26 +01:00
|
|
|
<WebView
|
|
|
|
|
android:id="@+id/detail_webview"
|
2025-12-14 08:25:59 +01:00
|
|
|
android:layout_width="match_parent"
|
2025-12-14 13:15:26 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:scrollbars="vertical" />
|
2025-12-14 08:25:59 +01:00
|
|
|
|
2025-12-14 13:15:26 +01:00
|
|
|
<ProgressBar
|
|
|
|
|
android:id="@+id/detail_loading"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
|
android:visibility="gone"/>
|
2025-12-14 08:25:59 +01:00
|
|
|
|
2025-12-14 13:15:26 +01:00
|
|
|
</RelativeLayout>
|
2025-12-14 08:25:59 +01:00
|
|
|
|
|
|
|
|
</LinearLayout>
|