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

  • SEARCH
  • Home
  • 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 6346493
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T21:01:40+00:00 2026-05-24T21:01:40+00:00

I want to display Data in List View but I got Error Null Pointer

  • 0

I want to display Data in List View but I got Error Null Pointer Exception run time in line

fList.setAdapter(la);

My code is here List is complete printing in Log
Thanks

public class Forfattere extends Activity {
/** Called when the activity is first created. */
ArrayList<String> aList = new ArrayList<String>();
@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.forfattere);
    ListView fList = (ListView)findViewById(R.id.Author_list);
    ArrayList<String> a = DBlistbookfestival.getAuthorName();
    for(int i=0;i<a.size();i++){
        aList.add(a.get(i));
        Log.v("all_data",a.get(i));
    }
    ListAdapter1 la = new ListAdapter1(this, R.id.Author_list, aList);
    fList.setAdapter(la);
 }

private class ListAdapter1 extends ArrayAdapter<String> {  // --CloneChangeRequired
    private ArrayList<String> mList;  // --CloneChangeRequired
    public ListAdapter1(Context context, int textViewResourceId,ArrayList<String> list) { // --CloneChangeRequired
        super(context, textViewResourceId, list);
        this.mList = list;
    }

    public View getView(int position, View convertView, ViewGroup parent){
        View view = convertView;
        try{
        if (view == null) {
            LayoutInflater vi = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            view = vi.inflate(R.layout.custom_radio, null);     // --CloneChangeRequired(list_item)
        }
        final String listItem = mList.get(position);    // --CloneChangeRequired                
        if (listItem != null) {
            ( (TextView) view.findViewById(R.id.textView111) ).setText(listItem);
        }}catch(Exception e){

        }
        return view;
    }
}   

}

  • 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-05-24T21:01:41+00:00Added an answer on May 24, 2026 at 9:01 pm

    Try now :

    public class Forfattere extends Activity {
    /** Called when the activity is first created. */
    ArrayList<String> aList = new ArrayList<String>();
    ListAdapter1 la = null;
    ListView fList = null;
    @Override
    public void onCreate(Bundle savedInstanceState) {
    
        super.onCreate(savedInstanceState);
        setContentView(R.layout.forfattere);
        fList = (ListView)findViewById(R.id.Author_list);
        ArrayList<String> a = DBlistbookfestival.getAuthorName();
        for(int i=0;i<a.size();i++){
            aList.add(a.get(i));
            Log.v("all_data",a.get(i));
        }
        la = new ListAdapter1(this,android.R.layout.simple_list_item_1, aList);
        fList.setAdapter(la);
     }
    
    private class ListAdapter1 extends ArrayAdapter<String> {  // --CloneChangeRequired
        private ArrayList<String> mList;  // --CloneChangeRequired
        public ListAdapter1(Context context, int textViewResourceId,ArrayList<String> list) { // --CloneChangeRequired
            super(context, textViewResourceId, list);
            this.mList = list;
        }
    
        public View getView(int position, View convertView, ViewGroup parent){
            View view = convertView;
            try{
            if (view == null) {
                LayoutInflater vi = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                view = vi.inflate(R.layout.custom_radio, null);     // --CloneChangeRequired(list_item)
            }
            final String listItem = mList.get(position);    // --CloneChangeRequired                
            if (listItem != null) {
                ( (TextView) view.findViewById(R.id.textView111) ).setText(listItem);
            }}catch(Exception e){
    
            }
            return view;
        }
    }   
    }
    

    In the following I used android default list item as you didn’t declare one.

    la = new ListAdapter1(this,android.R.layout.simple_list_item_1, aList);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a long list of data that I want to display in table
I want to display tabular type data, but it will not be coming from
I am using table layout to display data, but i want it to behave
I have a list view that contains some data, I want to share it
I want to display data in two columns as below Entry 1 Entry 2
I want to display data in a tabular form using <ul> and <li> as
I want to display data feed from an external database in a sidebar in
I have multiple SharePoint lists and want to display data from them on to
On one of our Java application screens, we want to display data loaded from
I have a huge set of data and want to display the data with

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.