在getView()GridView中添加按钮

时间:2011-10-07 12:32:23

标签: android

我尝试使用HelloGridView示例代码。

我希望为每个网格添加按钮。 从研究来看,似乎我必须在getView适配器方法中创建按钮而不是imageview。

但是,我不知道如何在getView()方法中创建按钮。

有人可以告诉我如何在方法中创建按钮吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

我想做同样的事情,所以我做的是使用一个xml文件和一个带有一些代码的layoutinflater。

包含GridView的XML:

<?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="fill_parent" 
android:padding="10dp" >
<GridView  
    android:id="@+id/gridview2"
    android:layout_width="fill_parent" 
    android:layout_height="250dp"
    android:columnWidth="90dp"
    android:numColumns="auto_fit"
    android:verticalSpacing="5dp"
    android:horizontalSpacing="5dp"
    android:stretchMode="columnWidth"
    android:gravity="center" />
</LinearLayout>

这是我的基础GridView,我使用了一个名为grid_item.xml的GridView“cell”的xml文件

<?xml version="1.0" encoding="utf-8" ?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/GridItem"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<Button 
    android:id="@+id/GridItem_Button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>
</LinearLayout>

然后在你的adapter.getView方法

public View getView( final int position, View convertView, ViewGroup parent ) {
View mView = convertView;
if( convertView == null ) {

// I use a cursor for the content which is setup elsewhere
cursor.moveToPosition( position );
// inflate the layout to edit it
LayoutInflater li = (LayoutInflater) Context.getSystemService( Context.LAYOUT_INFLATER_SERVICE);
mView = li.inflate( R.layout.grid_item, null );
// not we can get the button defined in grid_item.xml
Button b = (Button) mView.findViewById( R.id.GridItem_Button );
// set the button text based on the cursor/your content
b.setText( cursor.getString(0);
// now we can also do an OnClickListener
b.setOnClickListener( new View.OnClickListener() {
    @Override
    public void onClick( View v ) {
    // do something on button click
    }
});
}
return mView;
}

这对我很有用 起初我很困惑我应该使用哪个onClickListener,并且按钮可以将onClickListener添加到按钮,但是最好将onItemClickListener放到GridView本身。 如果有什么不清楚请告诉我。

尼克