E EvgenyB4A Active Member Licensed User Longtime User Aug 31, 2016 #1 Is there any way to exit preference activity without pressing Back Button? I work with applications without navigation bar.
Is there any way to exit preference activity without pressing Back Button? I work with applications without navigation bar.
Erel B4X founder Staff member Licensed User Longtime User Aug 31, 2016 #2 You can use AHPreferenceActivity.AddIntent to open another activity. The intent should be: B4X: Dim in As Intent in.Initialize(in.ACTION_VIEW, "") in.SetComponent(Application.PackageName & "/." & "main") Upvote 0
You can use AHPreferenceActivity.AddIntent to open another activity. The intent should be: B4X: Dim in As Intent in.Initialize(in.ACTION_VIEW, "") in.SetComponent(Application.PackageName & "/." & "main")