I've created a custom tab activity which has two different drawables for portrait and landscape orientation. The icons for portrait screen is under drawable-hdpi while the images for landscape is under drawable-land-hdpi. As of now, I put config change in the manifest to preserve the dialog's visibility.
android:configChanges="orientation"
Whenever the dialog is shown and user changes the orientation from portrait to landscape, the dialog still shows but the images it uses in tab activity is for portrait mode. That's why the layout for doesn't look right since it didn't use the drawables for landscape. Could someone help me with this? Thanks.