blob: fe55bf599d1e856e4736a7fb71abf5bb3beb36a1 [file] [log] [blame]
package p1.p2;
import android.annotation.SuppressLint;
import android.app.ActionBar;
import android.app.Activity;
public class MyActivity extends Activity {
private MyActivity() {
}
public void test1() {
@SuppressLint("NewApi") ActionBar actionBar = getActionBar();
}
}