Android use custom resolution
I have problem with custom resolution in AVD.
When I have created new AVD with custom resolution, the content of my app do开发者_StackOverflow社区esnt stretch. I also specify density but it doesnt work.Please help me
Marcus
You can add support-screen in android Menifest file as follow.
<supports-screens android:largeScreens="true" android:resizeable="true"
android:normalScreens="true" android:smallScreens="true" android:anyDensity="true"
android:xlargeScreens="true"></supports-screens>
精彩评论