Android: Simple GridView that displays text in the grids - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T08:29:46Z http://stackoverflow.com/feeds/question/982386 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/982386/android-simple-gridview-that-displays-text-in-the-grids 0 Android: Simple GridView that displays text in the grids fei 2009-06-11T17:11:35Z 2009-06-11T21:21:22Z <p>i'm following the example on the android tutorial about the GridView, but instead of showing image, i want to just simple show some text using a TextView. it turns out seems to be harder than i thought. it might seems like this is totally unnecessary and it doesn't have a valid use case, but i'm trying this out to just get myself familiar with the sdk. </p> <p>so my code is pretty much the same as the GridView example in <a href="http://developer.android.com/guide/tutorials/views/hello-gridview.html" rel="nofollow">http://developer.android.com/guide/tutorials/views/hello-gridview.html</a>, but instead of using a ImageAdapter, i created a dummy adapter like following: </p> <p>public class MyAdapter extends BaseAdapter {</p> <pre><code>private Context context; private String[] texts = {"aaa", "bbb", "ccc", "ddd", "eee", "fff", "eee", "hhh", "iii"}; public MyAdapter(Context context) { this.context = context; } public int getCount() { return 9; } public Object getItem(int position) { return null; } public long getItemId(int position) { return 0; } public View getView(int position, View convertView, ViewGroup parent) { TextView tv; if (convertView == null) { tv = new TextView(context); tv.setLayoutParams(new GridView.LayoutParams(85, 85)); } else { tv = (TextView) convertView; } tv.setText(texts[position]); return tv; } </code></pre> <p>it all seems valid to me, but running this gives me nothing on the screen. and there's no error message. there are some selectable/clickable (invisible) blocks if i click them, but the text is obvious not shown. i wonder is my layout doesn't have the android:text causing this problem? or anything else?</p> <p>any feedback will be appreciated and thanks for your help!</p> http://stackoverflow.com/questions/982386/android-simple-gridview-that-displays-text-in-the-grids/983212#983212 0 Answer by PSU_Kardi for Android: Simple GridView that displays text in the grids PSU_Kardi 2009-06-11T19:45:00Z 2009-06-11T19:45:00Z <p>I see GridView so I'm almost assuming that this is similar to SWT?</p> <p>If so you need to show the relationship between your view and the ViewGroup parent</p> http://stackoverflow.com/questions/982386/android-simple-gridview-that-displays-text-in-the-grids/983777#983777 0 Answer by snctln for Android: Simple GridView that displays text in the grids snctln 2009-06-11T21:21:22Z 2009-06-11T21:21:22Z <p>I am not sure what could be causing your problem. I followed the step by step instructions on the page that you linked to to set up "Hello, GridView", and used your code and was able to see the text.</p> <p>The only things I changed was rather than creating a class for ImageAdapter I used your MyAdapter. In the activity HelloGridView.java onCreate I used "MyAdapter" rather than "ImageAdapter". I didn't change the layout at all.</p> <p><img src="http://i41.tinypic.com/2rcwkmw.jpg" alt="alt text" /></p> <p>Here is a Screenshot of what I get when running your code.</p>