我有一个简单的应用程序,它以片段样式实现了一个页面首选项.我在装有Android 4.x(多个版本)的平板电脑上运行.当我打开首选项页面时, *** 作栏将掩盖最优先的选项.我的解决方法是让第一个道具无效,但这当然是愚蠢的.我只是不知道如何保留 *** 作栏,并让偏好设置从 *** 作栏下方开始.我没有为动作栏编程,它只是显示出来.
Screen shot of problem
Preferences.xml:
<?xml version="1.0" enCoding="utf-8"?><PreferenceScreen xmlns:androID="http://schemas.androID.com/apk/res/androID" > <CheckBoxPreference androID:key="pref_AdaptToRoomXXX" androID:title="This is the dummy item as a spacer" /> <CheckBoxPreference androID:key ="@string/pref_TimeFormat" androID:Title ="@string/action_setTimeFormat" androID:summary ="@string/action_setTimeFormat" /> <ListPreference androID:key="@string/pref_DateFormat" androID:title="@string/action_setDateFormat" androID:summary="@string/action_setDateFormat" androID:dialogtitle="@string/action_setDateFormat" androID:entrIEs="@array/action_setDateFormat_options" androID:entryValues="@array/action_setDateFormat_values" androID:defaultValue="@string/action_setDateFormat_default" /> <ListPreference androID:key="@string/pref_Textcolor" androID:title="@string/action_setTextcolor" androID:summary="@string/action_setTextcolor" androID:dialogtitle="@string/action_setTextcolor" androID:entrIEs="@array/action_setTextcolor_colors" androID:entryValues="@array/action_setTextcolor_values" androID:defaultValue="@string/action_setTextcolor_default" /> <CheckBoxPreference androID:key="@string/pref_DimOnBattery" androID:title="@string/action_setDimOnBattery" androID:defaultValue="true" /></PreferenceScreen>
有什么建议么?
解决方法:
通常,您的Actionbar不应覆盖内容.检查是否已为窗口设置Window.FEATURE_ACTION_bar_OVERLAY,即…
requestwindowFeature(Window.FEATURE_ACTION_bar_OVERLAY);
…被称为您的活动内部.如果是这样-将其删除.
希望这可以帮助…干杯!
总结以上是内存溢出为你收集整理的android-使用设置片段, *** 作栏掩盖了首选项全部内容,希望文章能够帮你解决android-使用设置片段, *** 作栏掩盖了首选项所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)