You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
api-impl: misc stubs
This commit is contained in:
@@ -44,8 +44,14 @@ public class LayoutInflater {
|
||||
this.context = context;
|
||||
}
|
||||
|
||||
private Factory mFactory;
|
||||
|
||||
public final LayoutInflater.Factory getFactory() {
|
||||
return null;
|
||||
return mFactory;
|
||||
}
|
||||
|
||||
public final void setFactory(LayoutInflater.Factory factory){
|
||||
mFactory = factory;
|
||||
}
|
||||
|
||||
public void setFactory2(Factory2 factory) {
|
||||
|
||||
@@ -6,6 +6,7 @@ import android.view.SurfaceHolder;
|
||||
|
||||
public class Window {
|
||||
public static final int FEATURE_OPTIONS_PANEL = 0;
|
||||
public static final int FEATURE_NO_TITLE = 1;
|
||||
|
||||
public static interface Callback {
|
||||
public void onContentChanged();
|
||||
|
||||
@@ -5,6 +5,8 @@ public interface WindowManager {
|
||||
|
||||
public class LayoutParams extends ViewGroup.LayoutParams {
|
||||
public static final int FLAG_KEEP_SCREEN_ON = 0;
|
||||
public static final int FLAG_DIM_BEHIND = 2;
|
||||
public static final int FLAG_NOT_FOCUSABLE = 8;
|
||||
|
||||
public float screenBrightness;
|
||||
public int softInputMode;
|
||||
|
||||
Reference in New Issue
Block a user