Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8447991
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T10:18:39+00:00 2026-06-10T10:18:39+00:00

I have an application that will show a simple listview. The listview will show

  • 0

I have an application that will show a simple listview. The listview will show the contents of a specific table of a SQLite database.

In the database table I have 3 fields. ID, Name and Picture.

An example row would be:

ID : 1
Name : Glass
Picture : @drawable/glass

Would it be possible to use a List View to view this information, or any other way.
I need the ListView to show the ID, then the Picture, then the Name in one ListView section, if that makes sense.

Thanks

//EDIT
Also, the database is in the assets folder of the app, is this the correct way to do it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T10:18:40+00:00Added an answer on June 10, 2026 at 10:18 am

    this code loads a list view with an image and a textview refer it and edit for your use (sample code from lazy adapter)

    public class abcdadapter extends BaseAdapter {
    
    private Activity activity;
    private String[] data;
    private ArrayList<HashMap<String, String>> dat;
    
    private static LayoutInflater inflater=null;
    public ImageLoader imageLoader; 
    
    public abcdadapter(Activity a, ArrayList<HashMap<String, String>> save,String[] images) {
        activity = a;
    
        dat=save;
        data=images;
        inflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        imageLoader=new ImageLoader(activity.getApplicationContext());
    }
    
    public int getCount() {
        return data.length;
    }
    
    public Object getItem(int position) {
        return position;
    }
    
    public long getItemId(int position) {
        return position;
    }
    
    public static class ViewHolder{
        public TextView text;
        public ImageView image;
    }
    
    public View getView(int position, View convertView, ViewGroup parent) {
        return parent;
        View vi=convertView;
        ViewHolder holder;
        if(convertView==null){
            vi = inflater.inflate(R.layout.item, null);
            holder=new ViewHolder();
            holder.text=(TextView)vi.findViewById(R.id.text);
            holder.image=(ImageView)vi.findViewById(R.id.image);
            vi.setTag(holder);
        }
        else
            holder=(ViewHolder)vi.getTag();
    
        holder.text.setText(dat.get(position).get("NAME"));
     //   holder.image.setTag(data[position]);     // set your image from drawable
      //  imageLoader.DisplayImage(data[position], activity, holder.image);
    
        return vi;
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a C# Windows application that I want to ensure will show up
I have a simple user application. I have a MainController Servlet that will be
I am trying to make a simple Windows Form application that will show different
I have an application that will accept URLs from the built in web browser
I have this application that will recurse all folders in a given directory and
I have an application that will return JSON-P data, and I have been communicating
I have an application that will mail users attachments of text files. Receiving users
We have an application that will capture different images from users and make them
I have an application that requires resizing of a component that will be scaled
My group and I have an application that will work with protected content files

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.