我尝试使用工具栏构建首选项屏幕,但我遇到了一些问题:
以下是我的activity_settings.xml的代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
app:navigationIcon="?attr/homeAsUpIndicator"
app:title="@string/action_settings"
android:theme="@style/ThemeOverlay.AppCompat.Dark" />
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar" />
</LinearLayout>
这是AndroidManifest条目:
<activity
android:name=".activities.SettingsActivity"
android:label="@string/activity_settings"
android:theme="@style/AppTheme.NoActionBar" />
有人能帮助我吗?
答案 0 :(得分:0)
将android:layout_marginTop="?attr/actionBarSize"
添加到xml中的ListView。
将fill_parent
替换为match_parent
已弃用。
移除它android:layout_below="@+id/toolbar"
LinearLayout