0

我正在使用 ActionBarSherlock 为 Android HoneyComb 的前/后版本实现 ActionBar。我的问题是,当我点击 Android 4.0.4 版的左上角图标时,它没有响应。这是我到目前为止所做的:

1) 在所有样式文件夹中 "values/styles.xml" , "values-v11/styles.xml" & "values-v14/styles.xml"; 我做了以下

<style name="ActivityTheme" parent="@style/AppTheme">
        <item name="actionBarStyle">@style/ActivityActionBarStyle</item>
        <item name="android:actionBarStyle">@style/ActivityActionBarStyle</item>
    </style>
<style name="ActivityActionBarStyle" parent="ommaralrd_transparent_ActionBar">
        <item name="displayOptions">showHome|showTitle|homeAsUp</item>
        <item name="android:displayOptions">showHome|showTitle|homeAsUp</item>
    </style>

在任何应用程序活动中(除了 Home 活动,因为它不应该有向上箭头),我做了以下事情:

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
setContentView(R.layout.activity_inner);
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB){
            getSupportActionBar().setDisplayHomeAsUpEnabled(false);
        }
.....rest of my code ...
}


@Override
    public boolean onOptionsItemSelected(MenuItem item) {
        Intent intent;
        switch (item.getItemId()) {
        case android.R.id.home:

            /*app icon in action bar clicked; go home*/
            intent = new Intent(this, MainActivity.class);

            /* With this flag, if the activity you're starting already exists in the current task, 
             * then all activities on top of it are destroyed and it is brought to the front.
             * you should usually not create a new instance of the home activity. Otherwise, 
             * you might end up with a long stack of activities in the current task with multiple 
             * instances of the home activity.*/
            intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
            startActivity(intent);
            break;
        default:
            return super.onOptionsItemSelected(item);
        }
        return true;
    }

在清单文件中,我确保已将各自的样式应用于所有活动(主要活动除外,因为它不应该有向上箭头)

<activity
            android:name="com.andrid.example.TestActivity"
            android:label="@string/app_name"
            android:theme="@style/ActivityTheme" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.andrid.example.MainActivity" />
        </activity>

所以现在当我在 Pre-HoneyComb 版本上测试应用程序时,向上箭头永远不会显示,这是正确的,因为如果点击图标向上导航,ABS 根本无法响应。但是,当我在模拟器上尝试 4.1 等 Post-HoneyComb 版本的应用程序时,会显示向上箭头,当我点击它时,它会按预期工作并正常向上导航。我的问题是,当我在 Android 4.0.4 emulator 上尝试应用程序时,向上箭头按预期显示,但是当我点击它时,它什么也不做

4

1 回答 1

0

我找到了解决方法:我应该避免使用 xml 属性将 Icon Home 设置为 Up:homeAsUp 但我应该明确使用 setDisplayHomeAsUpEnabled(true),如下所示:

在所有样式文件夹中“values/styles.xml”、“values-v11/styles.xml”和“values-v14/styles.xml”;我做了以下

<style name="ActivityTheme" parent="@style/AppTheme">
        <item name="actionBarStyle">@style/ActivityActionBarStyle</item>
        <item name="android:actionBarStyle">@style/ActivityActionBarStyle</item>
    </style>
<style name="ActivityActionBarStyle" parent="ommaralrd_transparent_ActionBar">
        <item name="displayOptions">showHome|showTitle</item>
        <item name="android:displayOptions">showHome|showTitle</item>
    </style>

在每个活动中(主要活动除外):

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB){
            getSupportActionBar().setDisplayHomeAsUpEnabled(true);
        }
于 2013-02-10T16:39:41.123 回答