22 lines
451 B
Java
22 lines
451 B
Java
package android.app;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
|
|
/***
|
|
* Created by laomo on 2016-11-21.
|
|
*/
|
|
public class Activity extends Context {
|
|
public void startActivity(Intent intent) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public FragmentManager getFragmentManager() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void finish() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|