[android-developers] Re: GridView with ToggleButton

2011-06-22 Thread Vault
Thanks. So, i have a grid in main.xml with id=buttonGrid. I put this in the main: public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); GridView grid = (GridView)

[android-developers] Re: GridView with ToggleButton

2011-06-20 Thread Paul Turchenko
You will have to supply Adapter for GridView in order to work. Consider setting CHOICE_MODE_MULTIPLE as I assume you can have multiple items toggled. On Jun 19, 6:21 pm, Vault lord.va...@gmail.com wrote: Hello, I'm trying to obtain something