android_multiviewwer/app/src/main/res/layout/launcher_activity.xml

26 lines
909 B
XML
Raw Normal View History

2024-08-12 17:02:52 +09:00
<?xml version="1.0" encoding="utf-8"?>
2024-08-30 14:43:42 +09:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2024-08-12 17:02:52 +09:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2024-08-30 14:43:42 +09:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2024-09-05 18:11:18 +09:00
android:background="@android:color/transparent"
2024-08-12 17:02:52 +09:00
android:orientation="vertical"
android:id="@+id/mainFragmentsContainer"
android:fitsSystemWindows="true">
2024-08-30 14:43:42 +09:00
<WebView
android:layout_margin="30dp"
android:id="@+id/searcher_01"
android:layout_width="match_parent"
android:alpha="0"
android:layout_height="match_parent"/>
2024-08-12 17:02:52 +09:00
<androidx.viewpager2.widget.ViewPager2
2024-09-05 18:11:18 +09:00
android:background="@android:color/transparent"
2024-08-12 17:02:52 +09:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/viewPager"
android:orientation="horizontal" />
</FrameLayout>