We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b3b7a93 + 101b90c commit 6842c50Copy full SHA for 6842c50
src/android/MainActivity.java
@@ -17,7 +17,7 @@ Licensed to the Apache Software Foundation (ASF) under one
17
under the License.
18
*/
19
20
-package uk.co.reallysmall.leaveyouregosatthedoor;
+package ${mypackage};
21
22
/** extends CordovaActivity */
23
src/android/uk/co/reallysmall/cordova/plugin/fragment/CordovaFragment.java
@@ -119,7 +119,9 @@ public View getContentView() {
119
}
120
121
public void setContentView(View contentView) {
122
- this.contentView = contentView;
+ FrameLayout frame = new FrameLayout(this.getActivity().getBaseContext());
123
+ frame.addView(contentView);
124
+ this.contentView = frame;
125
126
127
@Override
0 commit comments