当在android studio中使用内置的导航抽屉活动(包括操作栏和我的列表视图)时,在运行应用程序时,列表视图中的一部分出现在操作栏下方,请帮助解决问题
文件名app_bar_dept,其中包括操作栏,并包含layout =“ @ layout / content_dept”,它们引用了另一个名为content_dept的文件
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".dept">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/CustomActionBarTheme">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/CustomActionBarTheme"/>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_dept"/>
</android.support.design.widget.CoordinatorLayout>
文件名content_dept
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".dept"
tools:showIn="@layout/app_bar_dept">
<ListView
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="30dp"
android:clipToPadding="false"
android:scrollbarStyle="outsideOverlay"/>
</android.support.constraint.ConstraintLayout>
此处是样式文件
<resources>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="CustomActionBarTheme" parent="@style/Theme.AppCompat">
<item name="android:windowActionBarOverlay">true</item>
<!-- Support library compatibility -->
<item name="windowActionBarOverlay">true</item>
</style>
<style name="AppTheme.AppBarOverlay"
parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"
/>
</resources>
答案 0 :(得分:0)
尝试在ListView中从此android:paddingTop="30dp"
更改为此android:marginTop="30dp"
。