Hi ich hab eine Frage zu List Views. Ich versteh das nämlich nicht so ganz, auch wenn ich mir viele Tutorials ansehe.
Also ich hab erst die XML-Klasse der mainactivity
Dann hab ich die Klasse für list-items
Wie krieg ich es jetzt hin, dass ein List-Item so aufgebaut ist, wie ich es in der Klasse eingestellt habe?
Und kennt jemand ein gutes, deutschsprachiges Tutorial für den Adapter?
Also ich hab erst die XML-Klasse der mainactivity
Java:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MyActivity">
<EditText
android:id="@+id/name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:autoText="true"
android:text="Name" />
<EditText
android:id="@+id/nummer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/wohnort"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:text="Wohnort" />
<EditText
android:id="@+id/wohnort"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/name"
android:text="Nummer"
android:layout_toLeftOf="@+id/scrollView"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<Button
android:id="@+id/kontakt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Kontakt hinufügen"
android:layout_below="@+id/nummer"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<ListView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:id="@+id/listView"
android:layout_below="@+id/kontakt"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
</RelativeLayout>
Dann hab ich die Klasse für list-items
Java:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Large Text"
android:id="@+id/textView"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Large Text"
android:id="@+id/textView2"
android:layout_below="@+id/textView"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_toStartOf="@+id/textView3" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Large Text"
android:id="@+id/textView3"
android:layout_below="@+id/textView"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />
</RelativeLayout>
Wie krieg ich es jetzt hin, dass ein List-Item so aufgebaut ist, wie ich es in der Klasse eingestellt habe?
Und kennt jemand ein gutes, deutschsprachiges Tutorial für den Adapter?