質問編集履歴

1

WebViewのXMLを追記しました。

2019/10/29 02:52

投稿

ludolf
ludolf

スコア39

test CHANGED
File without changes
test CHANGED
@@ -179,3 +179,45 @@
179
179
  </androidx.coordinatorlayout.widget.CoordinatorLayout>
180
180
 
181
181
  ```
182
+
183
+ viewPagerからWebViewの表示しているxmlです
184
+
185
+
186
+
187
+ ```xml
188
+
189
+ <?xml version="1.0" encoding="utf-8"?>
190
+
191
+ <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
192
+
193
+ xmlns:tools="http://schemas.android.com/tools"
194
+
195
+ android:layout_width="match_parent"
196
+
197
+ android:layout_height="match_parent"
198
+
199
+ xmlns:app="http://schemas.android.com/apk/res-auto"
200
+
201
+ tools:context=".ui.main.ItemOneWebView">
202
+
203
+ <androidx.core.widget.NestedScrollView
204
+
205
+ android:layout_width="match_parent"
206
+
207
+ android:layout_height="match_parent">
208
+
209
+ <com.itemonewebview.NestedWebView
210
+
211
+ android:id="@+id/ItemOneWebView"
212
+
213
+ android:layout_width="match_parent"
214
+
215
+ android:layout_height="wrap_content"
216
+
217
+ android:isScrollContainer="false"/>
218
+
219
+ </androidx.core.widget.NestedScrollView>
220
+
221
+ </FrameLayout>
222
+
223
+ ```