如何在Android Project中添加ActionBarActivity?

时间:2015-08-31 11:56:03

标签: android project

我无法在Android项目中添加ActionBarActivity。在我的任何项目中都没有appcpmpat-v7选项。

我现在在做什么?

4 个答案:

答案 0 :(得分:2)

公共类MainActivity扩展了Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    ActionBar mActionBar = getActionBar();
    mActionBar.setDisplayShowHomeEnabled(false);
    mActionBar.setDisplayShowTitleEnabled(false);
    LayoutInflater mInflater = LayoutInflater.from(this);

    View mCustomView = mInflater.inflate(R.layout.custom_actionbar, null);
    TextView mTitleTextView = (TextView) mCustomView.findViewById(R.id.title_text);
    mTitleTextView.setText("My Own Title");

    ImageButton imageButton = (ImageButton) mCustomView
            .findViewById(R.id.imageButton);
    imageButton.setOnClickListener(new OnClickListener() {

        @Override
        public void onCl`enter code here`ick(View view) {
            Toast.makeText(getApplication`enter code here`Context(), "Refresh Clicked!",
                    Toast.LENGTH_LONG).show();
        }
    });

    mActionBar.setCustomView(mCustomView);
    mActionBar.setDisplayShowCustomEnabled(true);
}

}

答案 1 :(得分:1)

如果这是一个基于gradle的项目,那么您可以在build.gradle文件中添加以下依赖项,该文件将导入此依赖项。

compile 'com.android.support:appcompat-v7:23.0.0'

PS:23.0.0是针对android M的最新版本。您也可以使用21或22

答案 2 :(得分:0)

你应该在gradle文件中依赖com.android.support:appcompat-v7:21.0.0

你错误输入了相关课程的名称。

答案 3 :(得分:0)

你可以在这里找到答案How to add suport library,ActionBarActivity and themes to android project? 如果您的工作区不包含appcompat,它将由Eclipse自动生成。