@@ Branislav-i做了和你說過的一樣的東西,它對我很有用,但是沒有任何圖像超過9n文字,它也讓我看到了同樣的第一或螞蟻隨機圖像和文字在第九圖像的位置和文字帶有圖標和文字的gridview圖像
public class ImageAdapter extends BaseAdapter {
private Context mContext;
public ImageAdapter(Context c) {
mContext = c;
}
public int getCount() {
return mThumbIds.length;
}
public Object getItem(int position) {
return null;
}
public long getItemId(int position) {
return 0;
}
// create a new ImageView for each item referenced by the Adapter
public View getView(int position, View convertView, ViewGroup parent) {
View v;
if (convertView == null) { // if it's not recycled, initialize some attributes
LayoutInflater li = getLayoutInflater();
v = li.inflate(R.layout.mainmenu, null);
TextView tv = (TextView)v.findViewById(R.id.icon_text);
tv.setText(mTextsIds[position]);
ImageView iv = (ImageView)v.findViewById(R.id.icon_image);
iv.setImageResource(mThumbIds[position]);
} else {
v = (View) convertView;
}
return v;
}
private Integer[] mThumbIds = {
R.drawable.hotel1, R.drawable.rest,R.drawable.dubaicityinfoicon_new,R.drawable.history1,R.drawable.geography,R.drawable.infoicon,R.drawable.infoicon,R.drawable.infoicon,R.drawable.parkmain,
};
// references to our texts
private String[] mTextsIds = {
"Hotels","Restaurants","City Info","Dubai History","Geography Of Dubai","Useful Information","Embassies in Duabai","Museum's","park"
};
在此它回事,直到完美博物館但公園的工作不被顯示陣列mThumbIds內的任何隨機圖像n相關聯的文本。 plz plz催促需要幫助.. ñ呀圖像是可繪製的。
http://developer.android.com/resources/tutorials/views/hello-gridview.html –
@@ Dr.nik-我沒有在教程中做過這樣的事情say.stil面臨問題 – sups