Hallo an Alle,
ich habe mal wieder ein kleines Problem und ich denke ihr könnt mir helfen.
In meiner App erzeuge ich eine Liste:
Code
adapter = new ArrayAdapter<String>(this,
R.layout.kundendokumentearchiv, R.id.text1, list);
setListAdapter(adapter);
Die dazugehörende XML:
Code
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/llArchiv"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dip"
android:gravity="left|center_vertical"
android:minHeight="40dp"
android:singleLine="false"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
</LinearLayout>
Alles anzeigen
"
Die Liste wird auch ohne Probleme angezeigt aber ich möchte die Hintergrundfarbe im LinearLayout "llArchiv" ändern
und das ist das Problem. Hier mein Zugriff:
Code
LinearLayout ll = (LinearLayout) findViewById(R.id.llArchiv);
ll.setBackgroundResource(mittelColor);
Dabei erhalte ich eine NPE da das Objekt ll = NULL ist. Ich habe auch kein Zugriff auf das TextView in der XML.
Wo mache ich einen Fehler?
Gruß