0
how to get app page iid and use deep linking in android studio?
i have a news program with webview. but i cant integrate redirect to app page. example: 2 topics. you're in first topic, and there link, if you press it you navigate to 2nd topic.
4 ответов
+ 2
Possible. You need to enter a variable for id. And use it?
+ 1
Your" xml "layout must have an" id " assigned to it. Further. Programmatically access this element by "id".
+ 1
To open a different app screen. You need to create this screen. Create a class for the screen. And programmatically switch from one "Activity" to the one you need.
+ 1
Switching from MainActivity.class (XML activity_main.xml) To OtherActivity.class (Xml activity_other.xml)
Intent Intent = new Intent(MainActivity.this, OtherActivity.class);
startActivity(Intent) ;