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
プライベートfinal [anything]を初期化する必要があります – Srneczek
関連する問題
- 1. カスタムレイアウトのRecyclerViewアイテム
- 2. リストビューでカスタムレイアウトのアイテムを選択
- 3. グリッドビュー内の子アイテムのセンタリング
- 4. グリッドビューのアイテムをドラッグする
- 5. Android Studio Recyclerカスタムレイアウト内のアイテムの幅を表示
- 6. グリッドビューの列を行として表示
- 7. アイテムを持つグリッドビューをバインドする
- 8. グリッドビューからアイテムをハイライトする
- 9. ListViewの項目は、私はアイテムのためのカスタムレイアウトとリストビューを持っている
- 10. グリッドビューのボタンをクリックすると、arraylistにアイテムを追加します。
- 11. アイテムを押したときにグリッドビューの青色を削除する方法
- 12. アンドロイドウィジェットのカスタムレイアウト
- 13. カスタムレイアウトのUICollectionViewインターフェイスローテーション
- 14. カスタムレイアウトのAlerDialog
- 15. log4jのカスタムレイアウト
- 16. アンドロイドのカスタムレイアウト
- 17. Eclipse Siriusのカスタムレイアウト
- 18. カスタムレイアウトのリストビュー
- 19. カスタムレイアウトの動作
- 20. Androidのカスタムレイアウト - onDraw()
- 21. RadioButtonのカスタムレイアウト
- 22. フラグメント内のカスタムレイアウト
- 23. AutoCompleteTextViewのAndroidカスタムレイアウト
- 24. Androidのスピナーのカスタムレイアウト
- 25. リストをグリッドビューのDataSourceとして<Item>として使用
- 26. カスタムレイアウト別のレイアウトとの対話TextView
- 27. ZXingカスタムレイアウトのQRコードスキャナー
- 28. カスタムレイアウトの仕方h:selectOneRadio
- 29. Google Cast 'ExpandedControlsActivity'のカスタムレイアウト
- 30. ListViewカスタムレイアウト
使用カスタムアダプター[例](http://www.javacodegeeks.com/2013/08/android-custom-grid-view-example-with -image-and-text.html) – Manishika