我很困惑为什么当我使用这个布局时没有显示名为“btnAdd”的按钮。我已经尝试过 LinearLayout 和当前的 RelativeLayout 但它在两者中都是不可见的。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp">
<RelativeLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/lblName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:text="@string/category" />
<AutoCompleteTextView
android:id="@+id/txtName"
android:layout_marginRight="5dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/lblName"
android:textColor="#000000"
android:singleLine="true"/>
<Button
android:id="@+id/btnAdd"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_toRightOf="@id/txtName"
android:text="@string/add"/>
</RelativeLayout>
<TextView
android:id="@+id/android:empty"
android:layout_marginTop="4dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/current_categories"
/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginTop="2dp">
<ListView
android:id="@+id/android:list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/android:empty"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/recipe_uncategorized"
/>
</LinearLayout>
</LinearLayout>