Android Question Problem on Screen Listview on Android 6.0

b2mvga

Member
Licensed User
Longtime User
The screen on lists on android 6.0 not work fine (see image)... I change property to:

DRAWABLE: GRADIENTDRAWABLE

ORIENTATION: TOP_BOTTOM

FASCROOLENABLED=FALSE

And problem solved in most dispositives... however, I have for example, a SAMSUNG GALAXY J7 with problem (Attached Image)

Can anywhere help me solve this?

On older versions of android this not happens
 

Attachments

  • GalaxyJ7.jpg
    GalaxyJ7.jpg
    232.2 KB · Views: 224

b2mvga

Member
Licensed User
Longtime User
Moved to the questions forum. You should set the targetSdkVersion to 14+. Your app is still using the Android 2 theme. As you can see, newer versions of Android doesn't implement it properly.

Hi,

This I do in Manifest Editor? Like this?

AddManifestText(
<uses-sdk android:minSdkVersion="12" />
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
 
Upvote 0

b2mvga

Member
Licensed User
Longtime User
Hi,

This I do in Manifest Editor? Like this?

AddManifestText(
<uses-sdk android:minSdkVersion="12" />
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")


I Set this on APP and now screen works fine!

Thank you Erel!
 
Upvote 0
Top