在我的應用我想顯示一個簡單的圖像,底部導航欄隱藏了一個視圖
在我的三星Galaxy S7實際設備的圖像是罰款的一部分,底部導航欄是不看法,但部分的一部分的電話本身。 整個圖像存在。
在Android模擬器底部導航欄是視圖的一部分,並且圖像被部分隱藏
這是我的簡單線性佈局
<?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:fitsSystemWindows="true"
android:background="@color/md_blue_50"
android:orientation="vertical">
<include
android:id="@+id/app_bar"
layout="@layout/toolbar"/>
<ImageView
android:id="@+id/photo_image_large"
android:adjustViewBounds="true"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_vertical"
android:scaleType="fitXY"/>
</LinearLayout>
這裏是Android模擬器截圖
這是我的三星Galaxy Real設備屏幕截圖
的問題也發生在回收意見在應用程序中的圖像的底部被切斷對Android模擬器......
但底部導航欄是不是該視圖的甚至一部分 - 請參考我的LinearLayout ... –
是的,我瞭解它的一個Android模擬器它不是真正的設備,所以沒有問題,當你把應用程序放在商店 –
剛試過android:fitsSystemWindows =「false」圖像仍然是相同的 –