blob: 0a600a9d4c6c2e26fc32a02d76164a03d84683a1 [file] [log] [blame]
package test.pkg;
public class AppCompatTest extends IntermediateActivity {
public void test() {
getActionBar(); // ERROR
getSupportActionBar(); // OK
startActionMode(null); // ERROR
startSupportActionMode(null); // OK
requestWindowFeature(0); // ERROR
supportRequestWindowFeature(0); // OK
setProgressBarVisibility(true); // ERROR
setProgressBarIndeterminate(true); // ERROR
setProgressBarIndeterminateVisibility(true); // ERROR
setSupportProgressBarVisibility(true); // OK
setSupportProgressBarIndeterminate(true); // OK
setSupportProgressBarIndeterminateVisibility(true); // OK
}
}