Action bar for Android 2.1

前端 未结 6 739
遇见更好的自我
遇见更好的自我 2021-02-09 11:41

Is there action bar for Android Level 7 or something else that I can use as action bar? I need to build an app which is using action bar for Android 2.1

6条回答
  •  日久生厌
    2021-02-09 12:15

    TypedArray a = mActivity.getTheme().obtainStyledAttributes(R.style.AppTheme, new int[] {
        R.attr.actionbarCompatItemHomeStyle,
        R.attr.actionbarCompatItemStyle
    });
    int actionbarCompatItemHomeStyle = a.getResourceId(0, 0);
    int actionbarCompatItemStyle = a.getResourceId(1, 0);
    ImageButton actionButton = new ImageButton(mActivity, null,
        itemId == android.R.id.home ? actionbarCompatItemHomeStyle : actionbarCompatItemStyle
    );
    

提交回复
热议问题