2012-07-13 10 views
5

çalışmaz:layout_height RelativeLayout olarak = "fill_parent" Ben düzeni şu var

I sabit genişliği ve yüksekliğine eşit olan düzen inci sol dikey çizgi (kök düzeni içinde ilk bir görünümü) istiyorum
<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> 

Ebeveynin boyu. Ama eğer layout_height = "fill_parent" öğesini ayarlarsam, yardımcı olmaz. Yükseklik 0'dır. Eğer yüksekliği 40dip olarak ayarlarsam, 40 derece olur. Ama tam olarak fill_parent özelliğine ihtiyacım var.

+0

aslında ne yapmak istiyorsun? – AkashG

+0

Neyi başarmak istediğinizden bir çizim yayınlayabilir misiniz? –

+0

Bunu deneyin, Görünümünüz için android: layout_alignParentLeft = "true" komutunu kullanın ve buna göre task_item_startstop_button öğesini buna göre ayarlayın. İyileştirmek için bir kimlik yakala – Shubhayu

cevap

0

Bu sorununuzu çözüyor mu? Bir şey eklediğinizde, her zaman widget'larına tolerans verecek niçin Sadece Veli göreli düzeni kendi

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 

     <Button 
      android:layout_height="match_parent" 
      android:layout_width="30dp" 
      android:id="@+id/thebutton" 
      android:text="hello world" 
      /> 

    <AnalogClock 
     android:id="@+id/analogClock1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentTop="true" 
     android:layout_toRightOf="@+id/thebutton" /> 

</RelativeLayout> 
-1

sen verdik marjı ile ilgili unsurları yerine, bu. Android'i kaldır: layout_margin = "10dip" ana göreceli düzeninizden sonra ana dosyada gelen satırı aldınız.

+0

aslında burada söylediklerini çalışmıyor. –