我找不出如何添加imagebuttons到我的gridview。我必須爲每個圖像按鈕執行單獨的代碼,因爲它們完成了完全不同的事情。我該怎麼做?如何在android中添加imagebuttons到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>
發佈您用於顯示您的GridView的代碼。 – Carnal
我真的沒有那麼多的代碼,但我已經上傳了你看到 – user1446632
gridviews需要某種適配器。如果你沒有一個,那麼這將是第一步。 – toadzky