Italian Theme Holo.Light non si imposta

maxware

Well-Known Member
Licensed User
Longtime User
Ciao raga
Sto cercando di impostare il theme Holo.Light nella app che sto modificando
ma senza successo. Se connetto dal designer per vedere come appare sul tablet tutto funziona e mi permette di passare da un theme ad un altro ( es. default, holo.light o holo.lightdarkactionbar )
Ma quando vado nel manifest editor e glia aggiungo la riga

SetApplicationAttribute(android:theme, "@android:style/Theme.Holo")
mi torna in fase di compilazione in seguente errore

Compiling code. 0.69
Compiling layouts code. 0.09
Generating R file. Error
AndroidManifest.xml:36: error: Error: No resource found that matches the given name (at 'theme' with value '@android:style/Theme.Holo').


Questo e' il codice del manisfet intero
AddManifestText(
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="14"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:theme, "@android:style/Theme.Holo")

idee ??
Ciaoooooooooooo
Mamo
 

archemi

Member
Licensed User
Longtime User
Scusate ma io non riesco a risolvere lo stesso errore. Come avete fatto? Grazie mille già da subito
 

archemi

Member
Licensed User
Longtime User
B4X:
AddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:theme, "@android:style/Theme.Holo.Light")

Così non mi funziona
 

archemi

Member
Licensed User
Longtime User
Grazie mille, ho risolto con mettendo in Tools -> configurationPaths in android-19 e scegliendo il jar da li.
Prima puntava al 10 e così mi dava errore.

Merci
 
Top