I imported holoeverywhere like jar in project. But when I tried use theme, nothing not changed. What should I do to make it work?
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);
}
}
I also have a project under 2.3. How сan I use the holoeverywhere in the finished project under 2.3?