Hallo,
ich bin gerade dabei eine APP zu entwickeln, bei der ich verschiedene Kategorien habe, unterhalb jeder Kategorien will ich dann weitere Einträge anzeigen. Mein Problem ist nun, dass mir max. 2 Einträge angezeigt werden, der Rest verschwindet dann hinter der nächsten Kategorie. Hier der notwendige Xml Code! Such schon mehreren Tagen nach dem Problem, weiß aber mittlerweile nicht mehr weiter!
category.xml
Code
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView android:id="@+id/name"
android:background="@color/catagory_bg"
android:padding="0dip"
android:textStyle="bold"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<ListView android:id="@+id/items"
android:divider="#00000000"
android:dividerHeight="0px"
android:layout_width="fill_parent"
android:layout_height="match_parent"/>
</LinearLayout>
Alles anzeigen
item.xml
Code
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="5dip"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:clickable="false"
android:layout_weight="1">
<TextView
android:id="@+id/rowid"
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView android:id="@+id/name"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
Alles anzeigen
main.xml
Code
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<ListView android:id="@id/android:list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:transcriptMode="alwaysScroll"
android:layout_weight="0.5"/>
<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="10dip">
<EditText android:id="@+id/item_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:singleLine="true"
android:layout_gravity="bottom"/>
<ImageButton android:id="@+id/add_item_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/add"
android:layout_gravity="bottom" />
</LinearLayout>
</LinearLayout>
Alles anzeigen
Danke für eure Hilfe! Zur Verdeutlichung hab ich hier noch ein Beispiel https://cacoo.com/diagrams/CBmDjtDtHDY9Aupr
Mfg