リストビューを含む相対レイアウトに 2 つのボタンを追加しようとしています
一人しか現れない。
タブのようにリストビューの一番上に表示したい..
最初の画像はそれがどのように見えるか、2番目は私が望むものに似たものです.
ここに投稿したいのですが、「申し訳ありませんが、スパム防止メカニズムとして、新規ユーザーは画像を投稿できません。画像を投稿するには、評判を 10 以上獲得してください。」
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#FFFFFF"
>
<Button android:id="@+id/plus"
android:background="@drawable/selector"
android:layout_width="75dip"
android:layout_height="75dip"
android:layout_alignParentBottom="true"
/>
<Button android:id="@+id/main2"
android:layout_height="20dp"
android:layout_width="40dp"
android:hint="Notes"
android:background="#FFFFFF"
android:layout_above="@+id/list"
>
</Button>
<Button android:id="@+id/main3"
android:layout_height="20dp"
android:layout_width="40dp"
android:hint="Titles"
android:background="#FFFFFF"
android:layout_above="@+id/list">
</Button>
<ListView
android:layout_marginTop="70dp"
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/plus"
android:smoothScrollbar="true"
android:background="#FFFFFF" android:cacheColorHint="#FFFFFF"
android:fastScrollEnabled="true" android:clickable="true"
android:layout_marginBottom="10dp"
android:divider="#000000"
android:dividerHeight="1px"
>
</ListView>
<TextView android:id="@android:id/empty" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/noQ"
/>
</RelativeLayout>