I have an app that has minSdkVersion of 8 (Android 2.2). And I want to support my app in Tablet (Api Level 11 and above). I have implemented each UI for Tablet(for xlarge screen). Everyhing works and looks fine except Dialogs. Progressdialog , alertdialogs etc are so small.
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="11" />
I read the instructions described at http://developer.android.com/guide/practices/optimizing-for-3.0.html . Unfortunately, it doesn't work for me. Dialogs are still small.
How can I solve this problem?
Thanks in advance..