我需要您可以在图片中看到的视图顺序。我的 XML 布局文件如下。TextView
with IDeqlr_tv_question_comment
接管所有可用空间,其他视图不可见。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_list_row_9patch" >
<TextView
android:id="@+id/eqlr_tv_question"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/eqlr_tv_question_comment"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:paddingBottom="@dimen/fifteen_dp"
android:paddingLeft="@dimen/ten_dp"
android:paddingTop="@dimen/fifteen_dp"
android:textColor="@android:color/white"
android:textSize="@dimen/list_row_text_size" />
<ImageButton
android:id="@+id/eqlr_bt_create_comment"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@id/eqlr_tv_question_comment"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:background="@drawable/bg_write_comment"
android:contentDescription="@string/write_comment"
android:paddingRight="@dimen/twenty_dp" />
<TextView
android:id="@id/eqlr_tv_question_comment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/bg_comment_9patch"
android:textColor="@android:color/white"
android:textSize="@dimen/comment_text_size" />
</RelativeLayout>