以下代码在蓝图中生成结果:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/marker_shape">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/marker_header">
<TextView
android:id="@+id/widget_1_header_from"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="1"/>
<Button
android:id="@+id/widget_1_refresh"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@drawable/quantum_ic_refresh_white_24"/>
</LinearLayout>
<ListView
android:id="@+id/widget_1_list"
android:footerDividersEnabled="false"
android:headerDividersEnabled="false"
android:layout_width="match_parent"
android:dividerHeight="0dp"
android:layout_height="wrap_content">
</ListView>
</LinearLayout>
如您所见:TextView显示在Button下方。他们需要彼此相邻。我该如何解决这个问题?
答案 0 :(得分:0)
您有两个选择:
wrap_content
。或:
match_parent
。