0

我想在使用tenantlistadapter 类加载的列表下方显示并运行一个按钮。我的问题是我不知道将对象放在哪里。

我的课如下

public class TenantListAdapter extends BaseAdapter {

    private TenantList tenantList;
    private Context _context;
    private int selectedTenantPosition;
    static int selectedid;
    Button boutton_facebook;
    Intent browserIntent;

    public TenantListAdapter(Context context, TenantList array) {

        this.tenantList = array;

        this._context = context;
    }
...


@Override
    public View getView(int position, View convertView, ViewGroup parent) {
..
}

}

视图方法仅显示列表视图数据,但我希望按钮显示在列表下方。所以将按钮放在视图中是不合适的,因为它只显示列表数据。是否有另一种方法可以在类外调用按钮?

这是我的 xml 文件。我希望 facebook 按钮出现在列表视图下方

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="fill_parent"

    android:layout_height="fill_parent"

    android:background="#ffffff"

    android:orientation="vertical" >

    <RelativeLayout

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:layout_weight="0.3" >

        <ImageView

            android:id="@+id/nav_bar"

            android:layout_width="fill_parent"

            android:layout_height="wrap_content"

            android:scaleType="fitXY" />

        <Button android:id="@+id/back_button"

            android:layout_width="100dp"

            android:layout_height="60dp"

            android:layout_centerVertical="true"

            android:layout_alignParentLeft="true"

            android:background="@android:color/transparent"/>

    </RelativeLayout>

    <LinearLayout

        android:layout_width="fill_parent"

        android:layout_height="fill_parent"

        android:layout_weight="0.7"

        android:background="@drawable/home_background" >

        <ListView

            android:id="@id/android:list"

            android:layout_width="fill_parent"

            android:layout_height="355dp"

            android:layout_margin="10dp"

            android:cacheColorHint="#00000000" />


         <Button

        android:id="@+id/boutton_facebook"

        android:layout_width="fill_parent"

        android:layout_height="match_parent"

        android:drawableLeft="@drawable/f_logo"

        android:gravity="center_vertical|center_horizontal"

        android:text="@string/event"

        android:textSize="@dimen/facebook_button_text_size"

        android:textStyle="bold"

        android:typeface="serif" />

    </LinearLayout>


</LinearLayout>
4

1 回答 1

0

只需进行这些更改..在按钮小部件中使用 android:layout_below="@+id/android:list

    android:id="@+id/boutton_facebook"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:drawableLeft="@drawable/f_logo"
    android:gravity="center_vertical|center_horizontal"
    android:text="@string/event"
    android:textSize="@dimen/facebook_button_text_size"
    android:textStyle="bold"
    android:typeface="serif"
    android:layout_below="@+id/android:list" />
于 2012-12-05T07:29:59.630 回答