Ich habe folgendes Layout:layout_height = "fill_parent" in RelativeLayout funktioniert nicht
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/item_background"
android:layout_margin="10dip"
android:gravity="center_vertical">
<View
android:layout_width="30dip"
android:layout_height="fill_parent"
android:background="@color/test_color"/>
<ImageView
android:id="@+id/task_item_startstop_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/start_task"
android:layout_centerVertical="true"
android:focusable="false"
android:background="#0000"/>
<View
android:id="@+id/task_item_line"
android:layout_width="2dp"
android:layout_height="40dip"
android:layout_margin="5dip"
android:background="@color/line_color"
android:layout_toRightOf="@id/task_item_startstop_button"/>
<TextView
android:id="@+id/task_item_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@android:color/black"
android:textSize="22sp"
android:textStyle="bold"
android:layout_toRightOf="@id/task_item_line" />
<TextView
android:id="@+id/task_item_status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/task_item_suspended"
android:textSize="18sp"
android:textColor="@android:color/black"
android:layout_toRightOf="@id/task_item_line"
android:layout_below="@id/task_item_title"/>
<TextView
android:id="@+id/task_item_timer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dip"
android:textSize="18sp"
android:textColor="@android:color/black"
android:layout_toRightOf="@id/task_item_status"
android:layout_below="@id/task_item_title"/>
</RelativeLayout>
I gleich vertikale Linie (ersten Blick ins Inneren Wurzel Layout) auf Th links Layout mit fester Breite und Höhe haben wollen Elternhöhe. Aber wenn ich layout_height = "fill_parent" setze, hilft es nicht. Höhe ist 0. Wenn ich Höhe zum Beispiel 40dip einstelle, wird es 40 dip. Aber ich brauche genau fill_parent property.
eigentlich was willst du tun ?? – AkashG
Können Sie eine Zeichnung von dem, was Sie erreichen möchten, veröffentlichen? –
Versuchen Sie dies, verwenden Sie android: layout_alignParentLeft = "true" für Ihre Ansicht und setzen Sie dann task_item_startstop_button relativ dazu. GIve eine ID zu ure View – Shubhayu