here is my string which I must work with which is stored in an array called txt
the text and link shows up fine in the gridView cell: public View getView(int position, View convertView, ViewGroup parent) {
label.setText(Html.fromHtml(txt[position]));
but the problem is, how can i get that image to show ? Here is my xml file located in the menu folder which will fill each individual cell of the gridView:
<ImageView
android:id="@+id/grid_image"
android:layout_width="50dp"
android:layout_height="50dp">
</ImageView>
<TextView
android:id="@+id/grid_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:textSize="9sp" >
</TextView>