私はBottomNavigationViewアクティビティを持っています。その中には、ウェブビューがウェブサイトをロードするたびに、ウェブビューフラグメントがあります。 BottomNavigationViewは私のウェブビューの底部を隠していますが、これに関して私を助けることができる人は誰ですか?ボトムナビゲーションビュー私のウェブビューを隠しています
これはこれはActullyあなたがあなたのフラグメントを追加しているのWebViewを含んで私の最初のフラグメントのコード
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context="com.hackerinside.jaisonjoseph.polysocial.tab2">
<FrameLayout
android:id="@+id/frame1"
android:layout_width="match_parent"
android:layout_height="3dp"
android:background="@android:color/transparent">
<ProgressBar
android:id="@+id/progressBar1"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="3dp"
android:background="@android:color/transparent"
android:foregroundGravity="top"
android:progressDrawable="@drawable/custom_progress"
android:progress="20"/>
</FrameLayout>
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swiperefresh1"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.hackerinside.jaisonjoseph.polysocial.EulaWebView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/webview"
android:focusable="true"
android:focusableInTouchMode="true" />
</android.support.v4.widget.SwipeRefreshLayout>
</LinearLayout>
ユーザがwebviewをスクロールダウンすると、私のアプリケーションはアクションバーを隠していますが、非表示にすると、下のナビゲーションが苛立ちます。なぜですか? –