我有一个文本视图和一个按钮,当我的文本文本用长句子填满时,它正在填满我的按钮的背景。我应该做些什么来修正它?
""https://i.sstatic.net/rVzA.png" alt="此处输入图像描述"/ >
Textview 是“ dosyaAdi”, 按钮是“ 按钮EkIndir” strong>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.03"
android:background="#ededed" >
<TextView
android:id="@+id/txtKimden"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@android:color/black"
android:textSize="20dp" />
<TextView
android:id="@+id/txtKonu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/txtKimden"
android:layout_marginLeft="10dp"
android:text="Small Text"
android:ellipsize="end"
android:maxLines="3"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@android:color/black"
android:textSize="17dp" />
<ImageView
android:id="@+id/imageViewAttachment"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/txtKonu"
android:layout_marginLeft="10dp"
android:src="@drawable/ic_email_attachment65x30" />
<TextView
android:id="@+id/dosyaAdi"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/imageViewAttachment"
android:layout_toRightOf="@+id/imageViewAttachment"
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@android:color/black"
android:textSize="17dp" />
<TextView
android:id="@+id/txtTarih"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/txtKimden"
android:layout_alignBottom="@+id/txtKimden"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@android:color/black"
android:textSize="15dp" />
<TextView
android:id="@+id/txtSaat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/txtTarih"
android:layout_below="@+id/txtTarih"
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@android:color/black"
android:textSize="15dp" />
<Button
android:id="@+id/buttonEkIndir"
style="?android:attr/buttonStyleSmall"
android:layout_width="70dip"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/dosyaAdi"
android:layout_alignBottom="@+id/dosyaAdi"
android:layout_alignLeft="@+id/txtSaat"
android:text="İndir" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ededed" >
</RelativeLayout>
<WebView
android:id="@+id/webvGovde"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1" />
对于这一个:
"txtKonu"是左边的一个, "txtSaat"是右边的一个
""https://i.sstatic.net/7klJj.png" alt="此处输入图像描述"/"