我正在尝试向我的 relativelayout 添加两个按钮,其中包括一个列表视图
我只能让一个出现。
我希望它们位于我的列表视图的顶部,有点像标签..
第一张图片是它的样子,第二张和我想要的类似。
我本来想在这里发帖的,但是“很抱歉,但作为一种垃圾邮件预防机制,新用户不允许发布图片。获得超过 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>