我在项目中像 jar 一样导入了 holoeverywhere。但是当我尝试使用主题时,什么都没有改变。我应该怎么做才能让它工作?
package com.example.testholo;
import android.app.Activity;
import android.os.Bundle;
public class MyActivity extends Activity {
/**
* Called when the activity is first created.
*/
@Override
public void onCreate(Bundle savedInstanceState) {
setTheme(com.actionbarsherlock.R.style.Holo_Theme_Fullscreen);
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
我也有一个2.3下的项目。如何在 2.3 下的已完成项目中使用 holoeverywhere?