Android Question Popup Background

BarryW

Active Member
Licensed User
Longtime User
I'm using material design for my app and it works fine.
1.png


My problem is i am using rspopmenu library and my background is not holo

2.png

Here is my xml create from manifest editor:

B4X:
'
This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: https://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="19"/>
<supports-screens android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.
SetApplicationAttribute(android:hardwareAccelerated, "true")
SetApplicationAttribute(android:largeHeap, "true")
SetApplicationAttribute(android:windowSoftInputMode, adjustResize|stateHidden)
AddPermission(android.permission.READ_EXTERNAL_STORAGE)
AddPermission("android.permission.WRITE_EXTERNAL_STORAGE")
AddPermission("android.permission.INTERNET")
SetApplicationAttribute(android:theme, "@style/MyAppTheme")
CreateResource(values, colors.xml,
<resources>
<color name="backgroundColor">#FAFAFA</color>
</resources>
)
CreateResource(values, theme.xml,
<resources>
    <style name="MyAppTheme" parent="@style/Theme.AppCompat">
        <item name="android:windowBackground">@color/backgroundColor</item>
        <item name="android:colorBackground">@color/backgroundColor</item>
        <item name="colorPrimary">#2196F3</item>
        <item name="colorPrimaryDark">#0D47A1</item>
        <item name="colorAccent">#2196F3</item>
        <item name="windowNoTitle">true</item>
        <item name="colorControlNormal">#BDBDBD</item>
        <item name="colorControlActivated">#BDBDBD</item>
    </style>
</resources>
)

any help. tnx.
 
Top