Also möchten die Daten aus nem String-Array in ein Textfeld setzen, aber versteh den Fehler gar nicht :noe: :noe:
Code:
String[ ][ ] fonts = {{"SansSerif", "Serif", "Monospaced", "Arial", "Arial Black", "Courier New", "Impact", "DialogInput", "Lucida Bright", "Comic Sans MS"},
{"8", "9", "10", "11", "12", "14", "16", "18", "20", "22", "24", "26" ,"28"}};
Code:
for(int z = 0; z<fonts.length; z++)
{
textfeld.setText(fonts[z]);
}