how to keep icons in listview in android?
-
how to keep icons in listview in android?
-
Answer:
I'm not sure I understand your question. If you want images in a ListView you're going to need to define a custom layout for your list items. You can place an ImageView in that layout and then in your getView or newView/bindView (depending on the Adapter class you extend), you can modify the ImageView to contain whatever graphic you see fit.
deepthi at Stack Overflow Visit the source
Other answers
you can get help from http://android-er.blogspot.com/2010/06/listview-with-icon.html http://www.mail-archive.com/[email protected]/msg15691.html http://open-pim.com/tmp/LazyList.zip hope this will helps you if not yet then tell me
Pragna
Make a new file in /res/layout/demo.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <ImageView android:id="@+id/image" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/icon"/> <TextView android:id="@+id/os_name" android:layout_width="wrap_content" android:layout_height="wrap_content"/> </LinearLayout> In your class file-- public class MyListActivity extends ListActivity { public void onCreate(Bundle icicle) { super.onCreate(icicle); String[] values = new String[] { "Android", "iPhone", "WindowsMobile", "Blackberry", "WebOS", "Ubuntu", "Windows7", "Max OS X", "Linux", "OS/2" }; ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.row, R.id.os_name, values); setListAdapter(adapter); } } In the list you will get the text with image.
Hulk
Related Q & A:
- How to make Semicircular horizontal listview in android?Best solution by Stack Overflow
- How to keep an Android Service running?Best solution by Stack Overflow
- How to apply filter for listview on Android?Best solution by Stack Overflow
- How to rearrange icons?Best solution by Yahoo! Answers
- How to change icons on Macbook?Best solution by eHow old
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.