如何在android中添加图像按钮到gridview

时间:2012-10-04 19:58:42

标签: java android gridview imagebutton

我无法弄清楚如何在gridview中添加图像按钮。我必须为每个图像按钮执行单独的代码,因为它们完全不同。我该怎么做?

我最终使用了tablelayout而不是

代码:

package com.mysoftware.mysoftwareos.launcher;

import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnClickListener;

public class MainActivity extends Activity implements OnClickListener {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        //Import views

        //Setup onClickListener for the buttons

        //Setup GridView
    }

    @Override
    public boolean onKeyDown(int KeyCode, KeyEvent event) {
        if ((KeyCode == KeyEvent.KEYCODE_BACK)) {
        //Do nothing to prevent the back button to kill the launcher
        return true;
        }
    return super.onKeyDown(KeyCode, event);
    }

    public void onClick(View src) {
        switch(src.getId()) {
        }
    }
}

XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FF8090A0" >

<GridView
    android:id="@+id/appsGridView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:numColumns="3" >
</GridView>

</RelativeLayout>

1 个答案:

答案 0 :(得分:1)

gridview有一个你可以使用的onitemclickedlistener,但是如果按钮应该做不同的事情,并且你没有从某种数据存储加载,你可能还是不想要gridview。几年前看看Roman Nurik的DashboardLayout。您可以使用XML或代码将ImageButtons添加到其中。如果添加代码,则可以为每个按钮分配匿名onClickListener。如果以XML格式执行此操作,则可以将onClick属性设置为活动中的方法。