tabactivity - Android: Landscape Child Activity in a Portrait Tab Activity -
tabactivity - Android: Landscape Child Activity in a Portrait Tab Activity -
i have tab activity has 3 kid activities, a, b , c. kid activities , b follow orientation of tab activity. i.e. if tab activity in portrait should , b, if tag activity landscape should , b.
child activity c should in landscape orientation regardless of tab activity orientation (preferably next android:screenorientation="sensorlandscape"). possible?
i have tried using android:screenorientation="sensorlandscape" c in manifest doesn't work. best can manage utilize next in c (in onresume())
this.setrequestedorientation(activityinfo.screen_orientation_landscape);
and , b utilize (also in onresume())
this.setrequestedorientation(activityinfo.screen_orientation_portrait);
but flips entire tab not effect i'm looking for.
any help appreciated. regards.
i'm newbie , can tab layout picky in it. seek making landscape, changing orientarion of 2 a/b tabs after c working... luck!
android tabactivity
Comments
Post a Comment