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 8359337
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T11:06:52+00:00 2026-06-09T11:06:52+00:00

I tried to create an XML file that takes a simple listeView setted with

  • 0

I tried to create an XML file that takes a simple listeView setted with a personal adapter like this:

<?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="fill_parent"
    android:orientation="vertical">
    <ListView
        android:id="@+id/listpromo"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"/>
</LinearLayout>

and my activity:

 public class ListSample_category3 extends Activity 
    {

        public final static String ITEM_TITLE = "title";
        public final static String ITEM_COMPANY= "company";
        public final static String ITEM_DATE = "availabledate";
        private ListView list;

        public Map<String,?> createItem(String title, String company, String date) 
        {
            Map<String,String> item = new HashMap<String,String>();
            item.put(ITEM_TITLE, title);
            item.put(ITEM_COMPANY, company);
            item.put(ITEM_DATE, date);
            return item;
        }

        @Override
        public void onCreate(Bundle bundle) 
        {
            super.onCreate(bundle);

            List<Map<String,?>> security = new LinkedList<Map<String,?>>();
            security.add(createItem("Remember passwords", "Cisco", "2012-02-10"));
            security.add(createItem("Clear passwords", "Microsoft", "2012-02-10"));
            security.add(createItem("Show security warnings", "Apple", "2012-02-10"));

            // create our list and custom adapter
            SeparatedListAdapter adapter = new SeparatedListAdapter(this);

            adapter.addSection("Categorie 1", new ArrayAdapter<String>(this,
                R.layout.list_item_category3, new String[] { "First item", "Item two" }));

            adapter.addSection("Categorie 2", new SimpleAdapter(this, security, R.layout.list_complex_category3, 
                new String[] { ITEM_TITLE, ITEM_COMPANY, ITEM_DATE }, new int[] { R.id.list_complex_title, R.id.list_complex_company, R.id.list_complex_date }));

            // create ListView
            //ListView list = new ListView(this);
            list = (ListView) findViewById(R.id.listpromo);

            // OnItemClickListener on all items
            OnItemClickListener listener = new OnItemClickListener()
            {
                  public void onItemClick(AdapterView<?> parent, View view, int position, long id)
                  {

                  }
            };
            list.setOnItemClickListener(listener);
            list.setItemsCanFocus(true);

            list.setAdapter(adapter);
            this.setContentView(list);

        }
    }

But i have a NullPointerException :

    08-05 17:00:26.304: E/AndroidRuntime(3226): FATAL EXCEPTION: main
08-05 17:00:26.304: E/AndroidRuntime(3226): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.dev.prixo/com.dev.prixo.OngletsActivity}: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.dev.prixo/com.dev.prixo.ListSample_category3}: java.lang.NullPointerException
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1651)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1667)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.app.ActivityThread.access$1500(ActivityThread.java:117)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:935)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.os.Handler.dispatchMessage(Handler.java:99)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.os.Looper.loop(Looper.java:130)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.app.ActivityThread.main(ActivityThread.java:3687)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at java.lang.reflect.Method.invokeNative(Native Method)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at java.lang.reflect.Method.invoke(Method.java:507)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:867)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:625)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at dalvik.system.NativeStart.main(Native Method)
08-05 17:00:26.304: E/AndroidRuntime(3226): Caused by: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.dev.prixo/com.dev.prixo.ListSample_category3}: java.lang.NullPointerException
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1651)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.app.ActivityThread.startActivityNow(ActivityThread.java:1491)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.app.LocalActivityManager.moveToState(LocalActivityManager.java:127)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.app.LocalActivityManager.startActivity(LocalActivityManager.java:339)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.widget.TabHost$IntentContentStrategy.getContentView(TabHost.java:676)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.widget.TabHost.setCurrentTab(TabHost.java:348)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.widget.TabHost.addTab(TabHost.java:227)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at com.dev.prixo.OngletsActivity.onCreate(OngletsActivity.java:34)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1615)
08-05 17:00:26.304: E/AndroidRuntime(3226):     ... 11 more
08-05 17:00:26.304: E/AndroidRuntime(3226): Caused by: java.lang.NullPointerException
08-05 17:00:26.304: E/AndroidRuntime(3226):     at com.dev.prixo.ListSample_category3.onCreate(ListSample_category3.java:77)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
08-05 17:00:26.304: E/AndroidRuntime(3226):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1615)
08-05 17:00:26.304: E/AndroidRuntime(3226):     ... 20 more

Tell me how to do, please..

this is my SeperatedListAdapter:

public class SeparatedListAdapter extends BaseAdapter 
{
    public final Map<String,Adapter> sections = new LinkedHashMap<String,Adapter>();
    public final ArrayAdapter<String> headers;
    public final static int TYPE_SECTION_HEADER = 0;

    public SeparatedListAdapter(Context context) 
    {
        headers = new ArrayAdapter<String>(context, R.layout.list_header_category3);
    }

    public void addSection(String section, Adapter adapter) 
    {
        this.headers.add(section);
        this.sections.put(section, adapter);
    }

    public Object getItem(int position) 
    {
        for(Object section : this.sections.keySet()) 
        {
            Adapter adapter = sections.get(section);
            int size = adapter.getCount() + 1;

            // check if position inside this section 
            if(position == 0) return section;
            if(position < size) return adapter.getItem(position - 1);

            // otherwise jump into next section
            position -= size;
        }
        return null;
    }

    public int getCount() 
    {
        // total together all sections, plus one for each section header
        int total = 0;
        for(Adapter adapter : this.sections.values())
            total += adapter.getCount() + 1;
        return total;
    }

    public int getViewTypeCount() 
    {
        // assume that headers count as one, then total all sections
        int total = 1;
        for(Adapter adapter : this.sections.values())
            total += adapter.getViewTypeCount();
        return total;
    }

    public int getItemViewType(int position) 
    {
        int type = 1;
        for(Object section : this.sections.keySet()) 
        {
            Adapter adapter = sections.get(section);
            int size = adapter.getCount() + 1;

            // check if position inside this section 
            if(position == 0) return TYPE_SECTION_HEADER;
            if(position < size) return type + adapter.getItemViewType(position - 1);

            // otherwise jump into next section
            position -= size;
            type += adapter.getViewTypeCount();
        }
        return -1;
    }

    public boolean areAllItemsSelectable() 
    {
        return false;
    }

    public boolean isEnabled(int position) 
    {
        return (getItemViewType(position) != TYPE_SECTION_HEADER);
    }

    public View getView(int position, View convertView, ViewGroup parent) 
    {
        int sectionnum = 0;
        for(Object section : this.sections.keySet()) {
            Adapter adapter = sections.get(section);
            int size = adapter.getCount() + 1;

            // check if position inside this section 
            if(position == 0) return headers.getView(sectionnum, convertView, parent);
            if(position < size) return adapter.getView(position - 1, convertView, parent);

            // otherwise jump into next section
            position -= size;
            sectionnum++;
        }
        return null;
    }

    public long getItemId(int position) 
    {
        return position;
    }
}
  • 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-09T11:06:54+00:00Added an answer on June 9, 2026 at 11:06 am

    You can’t say findViewById() without setting a contentView. You have to set your XML layout which contains the ListView.

    setContentView(R.layout.yourlayout). Otherwise, your ListView list will be null.

    So in your onCreate():

    protected void onCreate(Bundle bundle) {
         super.onCreate(bundle);
         setContentView(R.layout.yourlayout);
    }
    

    And remove this line at the bottom of your onCreate():

    setContentView(listview);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have to create an xml file, that contains an element with attributes like:
This is the first Python script I've tried to create. I'm reading a xml
I tried to create jar file using command line that I inserted into java
I have written a small XML validator, that takes in an XML file and
I have an xml file that looks like the following. What I'm trying to
I'd like to read a large XML file that contains over a million small
I have tried create this table, but nothing I have tried works from FKs.
I tried to create a code that adds 2 percent each time a component
I have an existing XML schema that contains a type that I would like
I have a table that stores a tree like structure of file names. There

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.