Ich habe meine App auf einem Nexus 5 (Android 5) ausgeführt, aber ich stieß auf das Problem, dass die weiche Navigationsleiste am unteren Rand das letzte Element meiner ListView überlappt. Ich habe versucht, fitsSystemWindows zu meinem Stil und der ListView hinzuzufügen, aber das hat nicht funktioniert.Bottom soft NavigationBar überlappt mein ListView
Die XML mein Layouts:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="@color/sf4l"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView android:id="@id/android:list"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="@color/sf4l" />
</LinearLayout>
Auf welche Navigationsleiste beziehen Sie sich? Ist deine Aktivität im Vollbildmodus? –
Die Soft-Navigationsleiste mit den Schaltflächen Zurück, Home und Optionen. http://bit.ly/1vLpHSp –
Wenn ich einen Rand hinzufügen, habe ich ein Problem mit Geräten ohne Soft-Navigation-Tasten. –