feat: Access Native Ui & webview UI both at same time #4793
Unanswered
phoenix503
asked this question in
Q&A
Replies: 1 comment
-
While I initially also tried the solution to override public void setContentView(@LayoutRes int layoutResID) {
if (layoutResID == com.getcapacitor.android.R.layout.bridge_layout_main) {
super.setContentView(R.layout.activity_main);
} else {
super.setContentView(layoutResID);
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Feature Request
Description
I want to add Side Navigation Drawer to my App as an Native UI not with the HTML code.
Please tell the possible ways to do that.
Platform(s)
I have tried the same thing in Android , but unable to change the UI
Preferred Solution
Their is a method name called
load()
It is a private method, if somehow i can change the setContentView in this code i can able to add custom UI to Android App
Alternatives
If not possible, please suggest me other Alternatives to use Native UI for Side Navigation Drawer & HTML code both at same time
Additional Context
I am trying all these in Plain Capacitor App
Beta Was this translation helpful? Give feedback.
All reactions