其他分享
首页 > 其他分享> > android-如何为带有appcompat-v7 22.1的对话框样式的活动获取动作栏?

android-如何为带有appcompat-v7 22.1的对话框样式的活动获取动作栏?

作者:互联网

背景知识:我正在为平板电脑提供支持,该游戏以前在手机上已经存在很长时间了.一些活动组成了一个“向导”,用户可以在游戏开始之前选择游戏类型,一些选项和一个对手.对于使用主题的平板电脑版本,继承这些活动的Theme.AppCompat.DialogWhenLarge看起来是一个不错的简单解决方案.使用appcompat-v7版本22.0.0时,此方法工作正常.

在appcompat-v7版本22.1中,在所有这些DialogWhenLarge活动中,突然getSupportActionBar()开始在平板电脑上返回null.我依靠操作栏进行向后导航,更重要的是依靠搜索和其他按钮.

在平板电脑上针对这些活动获取操作栏的合适方法是什么?我需要实现自己的工具栏吗?

我曾尝试在onCreate中调用requestWindowFeature(Window.FEATURE_ACTION_BAR)(在调用super之前),但这无效.我尝试从AppCompatActivity而不是ActionBarActivity继承子类,但这都没有帮助(带有和不带有requestWindowFeature).

我已经在这个新的库版本上阅读了Chris Banes’ blog post,并且在Android开发者博客上阅读了Ian Lake’s post;我看不到任何内容提及操作栏不再可用.

解决方法:

我遇到过同样的问题.我能找到解决问题的唯一方法是用工具栏替换操作栏.

// Replace the action bar with a toolbar
Toolbar toolbar = (Toolbar)findViewById(R.id.tool_bar);
setSupportActionBar(toolbar);

我的工具栏布局:

<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="?attr/actionBarSize"
    android:theme="@style/DefaultActionBarTheme"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

我的活动中包括:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/detail_root"
          android:orientation="vertical"
          android:layout_width="match_parent"
          android:layout_height="match_parent">

    <include android:id="@+id/tool_bar" layout="@layout/tool_bar" />

    <ListView
        android:id="@+id/detail_listview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:overScrollMode="always" />
</LinearLayout>

DefaultActionBarTheme(在styles.xml中):

<!-- Action bar theme -->
<style name="DefaultActionBarTheme" parent="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
    <item name="colorControlNormal">#1d7caf</item>
</style>

标签:appcompat-v7-r22-1,android-appcompat,android
来源: https://codeday.me/bug/20191028/1951176.html