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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T11:42:07+00:00 2026-06-18T11:42:07+00:00

I want to create a class which extends AlertDialog.Builder : public class AlertBuilder extends

  • 0

I want to create a class which extends AlertDialog.Builder:

public class AlertBuilder extends AlertDialog.Builder {

    private MultiAdapter mAdapter;
    private ListView lv;
    private Activity mActivity;
    private Context mContext;
    private CheckedTxtView checkedItem;

    public AlertBuilder(Context context, Activity activity, final List<CheckedTxtView> mList) {
        super(context);
        this.mActivity = activity;
        this.mContext = context;

        this.setTitle("Test");
        LayoutInflater inflater = activity.getLayoutInflater();
        View dialoglayout = inflater.inflate(R.layout.main_filter, null);
        this.setView(dialoglayout);

        mAdapter = new MultiAdapter(context, mList); 
        lv = (ListView) dialoglayout.findViewById(R.id.list);
        lv.setAdapter(mAdapter);
        lv.setOnItemClickListener(new ItemClick());
    }

    class ItemClick implements OnItemClickListener {
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
            checkedItem = mAdapter.mItems.get(position);;
            mAdapter.notifyDataSetChanged();
        }
    }

    private class MultiAdapter extends ArrayAdapter<CheckedTxtView> {

        private List<CheckedTxtView> mItems;

        public MultiAdapter(Context context, List<CheckedTxtView> mList) {
            super(context, R.layout.list2, mList);
            this.mItems = mList;
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {

            View row;

            if (convertView == null)  {
                LayoutInflater inflater = mActivity.getLayoutInflater();
                row = inflater.inflate(R.layout.list2, parent, false);
            } else
                row = convertView;

            CheckedTextView txt = (CheckedTextView) row.findViewById(R.id.label);

            CheckedTxtView c = mItems.get(position); 

            System.out.println(c.item);

            txt.setText(c.item);
            if(checkedItem != null && checkedItem.item != null)
                txt.setChecked(c.item.equals(checkedItem.item));

            return row;
        }
    }

Then I use it in my Activity:

public class MainActivity extends Activity {

    private List<CheckedTxtView> mList;
    private AlertDialog mAlert;
    private AlertDialog.Builder mAlertBuilder;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        mList = new ArrayList<CheckedTxtView>();
        for(int i=0; i<30; i++) {
            CheckedTxtView c = new CheckedTxtView();
            c.item = "item " + i;
            mList.add(c);
        }

        mAlertBuilder = new AlertBuilder(getApplicationContext(), this, mList);
        mAlert = mAlertBuilder.create();

        Button mButton = (Button) this.findViewById(R.id.mButton);
        mButton.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                mAlert.show();
            }
        });
    }
}

I get this error in the console:

02-07 13:33:05.641: E/AndroidRuntime(12557): FATAL EXCEPTION: main
02-07 13:33:05.641: E/AndroidRuntime(12557): android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application
02-07 13:33:05.641: E/AndroidRuntime(12557):    at android.view.ViewRoot.setView(ViewRoot.java:566)
02-07 13:33:05.641: E/AndroidRuntime(12557):    at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:179)
02-07 13:33:05.641: E/AndroidRuntime(12557):    at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:91)
02-07 13:33:05.641: E/AndroidRuntime(12557):    at android.app.Dialog.show(Dialog.java:265)
02-07 13:33:05.641: E/AndroidRuntime(12557):    at com.example.testdialog.MainActivity$1.onClick(MainActivity.java:35)
02-07 13:33:05.641: E/AndroidRuntime(12557):    at android.view.View.performClick(View.java:2533)
02-07 13:33:05.641: E/AndroidRuntime(12557):    at android.view.View$PerformClick.run(View.java:9320)
02-07 13:33:05.641: E/AndroidRuntime(12557):    at android.os.Handler.handleCallback(Handler.java:587)
02-07 13:33:05.641: E/AndroidRuntime(12557):    at android.os.Handler.dispatchMessage(Handler.java:92)
02-07 13:33:05.641: E/AndroidRuntime(12557):    at android.os.Looper.loop(Looper.java:150)
02-07 13:33:05.641: E/AndroidRuntime(12557):    at android.app.ActivityThread.main(ActivityThread.java:4385)
02-07 13:33:05.641: E/AndroidRuntime(12557):    at java.lang.reflect.Method.invokeNative(Native Method)
02-07 13:33:05.641: E/AndroidRuntime(12557):    at java.lang.reflect.Method.invoke(Method.java:507)
02-07 13:33:05.641: E/AndroidRuntime(12557):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:849)
02-07 13:33:05.641: E/AndroidRuntime(12557):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:607)
02-07 13:33:05.641: E/AndroidRuntime(12557):    at dalvik.system.NativeStart.main(Native Method)

I may miss something here. can you help me?

  • 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-18T11:42:08+00:00Added an answer on June 18, 2026 at 11:42 am

    Instead of getApplicationContext() use this or MainActivity.this.

     mAlertBuilder = new AlertBuilder(this, this, mList);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

my question is simple. I have class TouchSurfaceView which extends GLSurfaceView. I want create
I want to create layout programmatically in different class which is not an activity
I want to create a composite in GWT that require a class which extends
I want to create a class which is derived from QLineEdit ,but I can
I want to create a class that initializes a timer which will be used
I want to create a Class, say MyDiv , which inherits from the original
I want to create one new model class, which will be extended in all
I want to create a class with a nested enum. public class Foo {
I want to create whois class like that public class DomainInfo { public string
I want to create a model 'Relation' which extends ActiveRecord::Base, set it's table name

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.