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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T10:40:07+00:00 2026-06-13T10:40:07+00:00

Is it possible to use the getResources() method inside the Runnable() ? . When

  • 0

Is it possible to use the getResources() method inside the Runnable() ? . When i use this method it shows an error. I am want to get online db data and use it for map. But, the response is null. Can any one help me to fix this error or find its alternatives and here is my class

public class Car_finder_oneActivity extends Activity implements LocationListener{

    HttpPost httppost;
    StringBuffer buffer;
    HttpResponse response;
    HttpClient httpclient;
    List<NameValuePair> nameValuePairs;
    ProgressDialog dialog = null;
    LocationManager locManager;
    GeoPoint point;
    Drawable drawable;
    CarItemizedOverlay itemizedOverlay;
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.cancel_park);
        dialog = ProgressDialog.show(Car_finder_oneActivity.this, "", "Cancel parking...", true);
        new Thread(new Runnable() {
            public void run() {
                cancelpark();                          
            }
        }).start(); 
    }

    public void cancelpark(){
         try{  
             httpclient=new DefaultHttpClient();
             httppost= new HttpPost("http://10.0.2.2/test_login/latest.php");
             nameValuePairs = new ArrayList<NameValuePair>(2);
             String p_u_name = "admin";
             String KEY_MAP = "map";
             nameValuePairs.add(new BasicNameValuePair(KEY_MAP,""));
             nameValuePairs.add(new BasicNameValuePair("username",p_u_name.trim()));
             httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
             ResponseHandler<String> responseHandler = new BasicResponseHandler();
             final String response = httpclient.execute(httppost, responseHandler);
             System.out.println("Response : " + response); 
             runOnUiThread(new Runnable() {
                 public void run() {
                     System.out.println("Response from PHP : " + response);
                     dialog.dismiss();
                 }
             });

             if(response!=null)//.equalsIgnoreCase("Success"))
             {
                 runOnUiThread(new Runnable() {
                     public void run() {
                         Toast.makeText(Car_finder_oneActivity.this,response, Toast.LENGTH_SHORT).show();
                         String data = response;
                         String items[] = data.split(",");
                         String lat = items[0];
                         int latitude = Integer.parseInt(lat);
                         String lon = items[1];
                         int longitude = Integer.parseInt(lon);
                         point = new GeoPoint((int)(latitude*1E6),(int)(longitude *1E6));
                         MapView mapView = (MapView) findViewById(R.id.carfinder_mapview);
                         //get the MapController object
                         MapController controller = mapView.getController();
                         controller.animateTo(point);
                         // fetch the drawable - the pin that will be displayed on the map
                         drawable = this.getResources().getDrawable(R.drawable.park_here_icon);
                         // create and add an OverlayItem to the MyItemizedOverlay list
                         OverlayItem overlayItem = new OverlayItem(point, "", "");
                         itemizedOverlay = new CarItemizedOverlay(drawable,this);
                         itemizedOverlay.addOverlay(overlayItem);

                         // add the overlays to the map
                         mapView.getOverlays().add(itemizedOverlay);
                         mapView.invalidate();
                     }
                 });

                 //startActivity(new Intent(LoginActivity.this, MainActivity.class));
             }
             else{
                 Toast.makeText(Car_finder_oneActivity.this,"foo", Toast.LENGTH_SHORT).show();
             }         
         }catch(Exception e){
                 dialog.dismiss();
                     System.out.println("Exception : " + e.getMessage());
                 }
            }
             public void showAlert(){
                 Car_finder_oneActivity.this.runOnUiThread(new Runnable() {
                     public void run() {
                         AlertDialog.Builder builder = new AlertDialog.Builder(Car_finder_oneActivity.this);
                         builder.setTitle("Parking Error.");
                         builder.setMessage("Try again?.")  
                                .setCancelable(false)
                                .setPositiveButton("OK", new DialogInterface.OnClickListener() {
                                    public void onClick(DialogInterface dialog, int id) {
                                        Intent r = new Intent(getApplicationContext(),Park_HereActivity.class);
                                        startActivity(r);
                                    }
                                });                     
                         AlertDialog alert = builder.create();
                         alert.show();               
                     }
                 });
             }
            public void onLocationChanged(Location arg0) {
                // TODO Auto-generated method stub
            }
            public void onProviderDisabled(String provider) {
                // TODO Auto-generated method stub
            }
            public void onProviderEnabled(String provider) {
                // TODO Auto-generated method stub
            }
            public void onStatusChanged(String provider, int status, Bundle extras) {
                // TODO Auto-generated method stub                  
            }
        }

I got the error like this
enter image description here

  • 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-13T10:40:09+00:00Added an answer on June 13, 2026 at 10:40 am

    you need to have a Context object like this

    Context context=getApplicationContext();
    drawable=context.getResources().getDrawable(R.drawable.park_here_icon);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is this possible to use Ajax.Beginform with update target inside of ajax form. like
Is it possible use a MySQL query to perform this kind of check? If
I've been thinking about the possible use of delete this in c++, and I've
is it possible use Jenkins to create an EAR file for manual deployment? This
The original use case: This is a possible use case I'm trying to solve:
is it possible use the ko.computed write function on the foreach $data variable like
what could be a possible use of declaring types within a namespace but not
Is it possible use in-explicit constructing with operators ? Just like in this example
Is it possible use RESTKit with ASIHTTPRequest? I have been using ASIHTTPRequest but it
Is it possible use mod_rewrite to resolve addresses hosted on another server? Say I

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.