0
Ich brauche eine Möglichkeit zu sagen, ob Gerät LDPI oder MDPI oder HDPI HTML-Schriftgröße zu x festgelegt ist. zandroid html Schriftgröße nach Bildschirm Dichte
if (ldpi){
htmlString.append("<br><p align='center'><font color='Yellow' size='5'>");
}
else if (mdpi){
htmlString.append("<br><p align='center'><font color='Yellow' size='6'>");
}
else if (hdpi){
htmlString.append("<br><p align='center'><font color='Yellow' size='7'>");
}
jede Hilfe dankbar
danke für Ihre Hilfe –