如何創建自定義佈局,該佈局將作爲gridview的項目。我找不到任何教程和什麼。自定義佈局作爲網格視圖的項目
7
A
回答
16
試試這個..
grid_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/grid_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:numColumns="auto_fit"
android:columnWidth="90dp"
android:horizontalSpacing="10dp"
android:verticalSpacing="10dp"
android:gravity="center"
android:stretchMode="columnWidth" >
</GridView>
AndroidGridLayoutActivity.java
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.GridView;
public class AndroidGridLayoutActivity extends Activity {
// Keep all Images in array
public Integer[] mThumbIds = {
R.drawable.ic_launcher, R.drawable.ic_launcher,
R.drawable.ic_launcher, R.drawable.ic_launcher,
R.drawable.ic_launcher, R.drawable.ic_launcher,
R.drawable.ic_launcher, R.drawable.ic_launcher,
R.drawable.ic_launcher, R.drawable.ic_launcher,
R.drawable.ic_launcher, R.drawable.ic_launcher,
R.drawable.ic_launcher, R.drawable.ic_launcher,
R.drawable.ic_launcher
};
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.grid_layout);
GridView gridView = (GridView) findViewById(R.id.grid_view);
// Instance of ImageAdapter Class
gridView.setAdapter(new ImageAdapter(this,mThumbIds));
}
}
item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp" >
<ImageView
android:id="@+id/grid_item_image"
android:layout_width="50px"
android:layout_height="50px"
android:layout_marginRight="10px">
</ImageView>
</LinearLayout>
ImageAdapter.java
public class ImageAdapter extends BaseAdapter {
private Context context;
private final String[] mThumbIds;
public ImageAdapter(Context context, String[] mThumbIds) {
this.context = context;
this.mThumbIds = mThumbIds;
}
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View gridView;
if (convertView == null) {
gridView = new View(context);
// get layout from mobile.xml
gridView = inflater.inflate(R.layout.item, null);
// set image based on selected text
ImageView imageView = (ImageView) gridView
.findViewById(R.id.grid_item_image);
imageView.setImageResource(mThumbIds[position]);
} else {
gridView = (View) convertView;
}
return gridView;
}
@Override
public int getCount() {
return mThumbIds.length;
}
@Override
public Object getItem(int position) {
return null;
}
@Override
public long getItemId(int position) {
return 0;
}
}
如果你需要更多的例子請參考以下鏈接。
http://www.androidhub4you.com/2013/07/custom-grid-view-example-in-android.html
http://learnandroideasily.blogspot.in/2013/09/android-custom-gridview-example.html
+0
private final [anything]需要初始化 – Srneczek
相關問題
- 1. 自定義列表視圖項佈局
- 2. asp.net - 列表/網格視圖自定義佈局
- 3. 列表視圖在自定義佈局中選擇項目
- 4. 填充列表視圖與自定義佈局項目
- 5. 自定義列表視圖項目佈局
- 6. C#WinForm的自定義網格佈局
- 7. 自定義網格視圖
- 8. 黑莓網格佈局自定義
- 9. 自定義視圖的Android佈局
- 10. xml佈局中的自定義視圖
- 11. 自定義視圖的佈局幫助
- 12. 獲取視圖的自定義佈局
- 13. 如何爲此Android項目製作自定義xml佈局?
- 14. 如何爲sbt項目指定自定義目錄佈局?
- 15. Appcelerator合金自定義列表視圖項目佈局不起作用?
- 16. 添加自定義視圖作爲XML佈局
- 17. Android佈局與自定義視圖
- 18. 佈局與自定義視圖
- 19. 自定義UITableViewCell子視圖佈局
- 20. 自定義視圖搞亂佈局
- 21. 自定義視圖或虛擬佈局?
- 22. 自定義列表視圖項圖形佈局Android
- 23. 在OnActionExecuted中爲視圖定義佈局
- 24. Bootstrap - 列表項目的網格佈局
- 25. 網格視圖setOnItemClickListener()不適用於自定義網格視圖
- 26. 網格視圖項目的
- 27. Android自定義列表視圖佈局到另一個佈局
- 28. Android無法使用自定義佈局刪除列表視圖中的項目
- 29. 網格視圖的自定義
- 30. xml佈局中的自定義視圖不起作用
使用自定義適配器[示例](http://www.javacodegeeks.com/2013/08/android-custom-grid-view-example-with -image-and-text.html) – Manishika