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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T11:06:01+00:00 2026-05-29T11:06:01+00:00

i have some listview and SimpleAdapter List<HashMap<String, Object>> dataList = new ArrayList<HashMap<String, Object>>(); HashMap<String,

  • 0

i have some listview and SimpleAdapter

List<HashMap<String, Object>> dataList = new ArrayList<HashMap<String, Object>>();

    HashMap<String, Object> map = new HashMap<String, Object>();
    map.put(ITEMTITLE, getString(R.string.broadcast_street_1_text));
    map.put(ITEMDESCR, getString(R.string.broadcast_request_1_text));
    dataList.add(map);

    map = new HashMap<String, Object>();
    map.put(ITEMTITLE, getString(R.string.broascast_street_2_text)); 
    map.put(ITEMDESCR, getString(R.string.broadcast_request_2_text));
    dataList.add(map);

    SimpleAdapter adapter = new SimpleAdapter(this, 
                                               dataList,
                                               R.layout.broadcast_list_item,
                                               new String[] {ITEMTITLE, ITEMDESCR}, 
                                               new int[] {R.id.broadcast_list_item_title, R.id.broadcast_list_item_descr}); 

    list.setAdapter(adapter);

so, when i click on the some list item i need to change activity.

        list.setOnItemClickListener(new AdapterView.OnItemClickListener() {
        public void onItemClick(AdapterView<?> arg0, View arg1, int position,long arg3) {
            Intent intent = new Intent(getParent(), BroadcastDataActivity.class);
            intent.putExtra("street", arg0.getItemAtPosition(position).toString());
            intent.putExtra("time", arg0.getItemAtPosition(position).toString());
            parentActivity = (WorldTaxiActivityGroup) getParent();
            parentActivity.startChildActivity("BroadcastData", intent);
        }
    });

But arg0.getItemAtPosition(position) returns just an Object of data
Help me, please, how can i get the data correcly?

  • 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-29T11:06:01+00:00Added an answer on May 29, 2026 at 11:06 am

    Use

    list.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            public void onItemClick(AdapterView<?> arg0, View arg1, int position,long arg3) {
                Intent intent = new Intent(getParent(), BroadcastDataActivity.class);
                HashMap<String, Object> item = dataList.get(position);
                intent.putExtra("street", item.get(ITEMTITLE).toString();
                intent.putExtra("time", item.get(ITEMDESCR).toString().toString());
                parentActivity = (WorldTaxiActivityGroup) getParent();
                parentActivity.startChildActivity("BroadcastData", intent);
            }
        });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a ListView and set a SimpleAdapter to show some formated items, then
I have a ListView with multiple choice entries where some are checked from the
Background: I have a ListView / GridView with several columns. In some situations, only
i want to display some information in a listview using the GridView. i have
Env.: VS 2008, .NET 2.0, WinForms I have a listview in Tile mode. Some
I have a simple list view with some check boxes in an alert dialog.
I have a listview with custom rows and that extends SimpleAdapter. Each row consist
I have seen some ListView dynamic growing implementations which use OnScrollListener. I would like
I have some xml, I want to give it to a List dataprovider, but
I have a Listview with some data.I want to get the number of click

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.