6

पर एक्शनबार जोड़ना मैं एक ऐप बना रहा हूं जो कुछ विशिष्ट कारणों से Google मानचित्र का उपयोग कर रहा है। इसलिए मैंने एंड्रॉइड स्टूडियो में एक Google मानचित्र ऐप बनाया और मुझे एक ऐसी गतिविधि मिली जो फ्रैगमेंट एक्टिविटी को बढ़ाती है। सब कुछ पूरी तरह से काम करता है लेकिन अब मैं स्क्रीन के शीर्ष पर एक्शन बार जोड़ना चाहता हूं। (हो सकता है कि वहाँ हैFragmentActivity

public class MainActivity extends FragmentActivity implements LocationListener { 
    private GoogleMap mMap; // Might be null if Google Play services APK is not available. 
    double lon = 0; 
    double lat = 0; 
    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_main); 
     setUpMapIfNeeded(); 

    } 
    @Override 
    protected void onResume() { 
     super.onResume(); 
     setUpMapIfNeeded(); 
    } 
    public void showSettingsAlert(){ 
     AlertDialog.Builder alertDialog = new AlertDialog.Builder(this); 

     // Setting Dialog Title 
     alertDialog.setTitle("GPS settings"); 

     // Setting Dialog Message 
     alertDialog.setMessage("GPS is not enabled. Do you want to go to settings menu?"); 

     // On pressing Settings button 
     alertDialog.setPositiveButton("Settings", new DialogInterface.OnClickListener() { 
      public void onClick(DialogInterface dialog,int which) { 
       Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS); 
       startActivity(intent); 
      } 
     }); 

     // on pressing cancel button 
     alertDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() { 
      public void onClick(DialogInterface dialog, int which) { 
       dialog.cancel(); 
      } 
     }); 

     // Showing Alert Message 
     alertDialog.show(); 
    } 
    private void setUpMapIfNeeded() { 
     LocationManager manager = (LocationManager)getSystemService(Context.LOCATION_SERVICE); 
     /*if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){ 
      showSettingsAlert(); 
     } 
     else{*/ 
     // Getting Google Play availability status 
     int status = GooglePlayServicesUtil.isGooglePlayServicesAvailable(getBaseContext()); 

     // Showing status 
     if(status!=ConnectionResult.SUCCESS){ // Google Play Services are not available 

      int requestCode = 10; 
      Dialog dialog = GooglePlayServicesUtil.getErrorDialog(status, this, requestCode); 
      dialog.show(); 

     }else { // Google Play Services are available 

      // Getting reference to the SupportMapFragment of activity_menu.xml 
      SupportMapFragment fm = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map); 

      // Getting mMap object from the fragment 
      mMap = fm.getMap(); 

      // Enabling MyLocation Layer of Google Map 
      mMap.setMyLocationEnabled(true); 

      // Getting LocationManager object from System Service LOCATION_SERVICE 
      LocationManager locationManager = (LocationManager) getSystemService(LOCATION_SERVICE); 
      boolean networkEnabled = locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER); 
      if(networkEnabled){ 
       Location location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER); 
       if(location!=null){ 
        lon = location.getLongitude(); 
        lat = location.getLatitude(); 
        LatLng latLng = new LatLng(lat, lon); 
        // Showing the current location in Google Map 
        mMap.moveCamera(CameraUpdateFactory.newLatLng(latLng)); 
        // Zoom in the Google Map 
        mMap.animateCamera(CameraUpdateFactory.zoomTo(15)); 
       } 
      } 
      // Creating a criteria object to retrieve provider 
      Criteria criteria = new Criteria(); 

      // Getting the name of the best provider 
      String provider = locationManager.getBestProvider(criteria, true); 

      // Getting Current Location 
      Location location = locationManager.getLastKnownLocation(provider); 

      if(location!=null){ 
       onLocationChanged(location); 
      } 
      locationManager.requestLocationUpdates(provider, 20000, 0, this); 
     /*}*/} 
    } 


    @Override 
    public void onLocationChanged(Location location) { 
     double latitude = location.getLatitude(); 

     // Getting longitude of the current location 
     double longitude = location.getLongitude(); 

     // Creating a LatLng object for the current location 
     LatLng latLng = new LatLng(latitude, longitude); 

     // Showing the current location in Google Map 
     mMap.moveCamera(CameraUpdateFactory.newLatLng(latLng)); 

     // Zoom in the Google Map 
     mMap.animateCamera(CameraUpdateFactory.zoomTo(15)); 

    } 

    @Override 
    public void onStatusChanged(String provider, int status, Bundle extras) { 

    } 

    @Override 
    public void onProviderEnabled(String provider) { 

    } 

    @Override 
    public void onProviderDisabled(String provider) { 

    } 
    @Override 
    public boolean onCreateOptionsMenu(Menu menu) { 
     // Inflate the menu; this adds items to the action bar if it is present. 
     getMenuInflater().inflate(R.menu.activity_menu, menu); 
     super.onCreateOptionsMenu(menu); 
     return true; 
    } 

इस गतिविधि के लिए मेरी लेआउट है: समस्या यह है कि नक्शा पूरे स्क्रीन लेता है और मैं

यहाँ गतिविधि के लिए मेरे कोड है कि यह कैसे तय करने के लिए पता नहीं है है समस्या):

<fragment xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:id="@+id/map" 
tools:context=".MainActivity" 
android:name="com.google.android.gms.maps.SupportMapFragment"/> 
+0

पोस्ट अपने 'styles.xml' फ़ाइल बढ़ाएँ। – Ziem

+0

यहां एक अच्छा जवाब है जो इसे स्पष्ट करता है: http://stackoverflow.com/questions/31297246/activity-appcompatactivity-fragmentactivity-and-actionbaractivity-when-to-us – CodeSlave

+0

यहां एक उत्तर है जो इसे स्पष्ट करता है: http: //stackoverflow.com/questions/31297246/activity-appcompatactivity-fragmentactivity-and-actionbaractivity-when-to-us – CodeSlave

उत्तर

19

अपने MainActivity बजाय विस्तार AppCompatActivity करें।

यह ActionBarActivity का विस्तार किया जाना चाहिए, लेकिन अब इसे बहिष्कृत कर दिया गया है।

+1

लेकिन मुझे वहां टुकड़ा होना चाहिए – Trabefi

+5

एक्शनबैरएक्टिविटी पहले से ही फ्रैगमेंट एक्टिविटी – Fahim

4

वास्तव में AppCompatActivity बढ़ाएं और फिर कार्रवाई बार सेट अप करने के लिए onCreateOptionsMenu() विधि का उपयोग करें।

+1

फैली हुई है भविष्य के संदर्भ के लिए: आप एक संपादन का सुझाव दे सकते हैं एक और पोस्ट करने के बजाय मौजूदा उत्तर क्योंकि एक वर्ग को बहिष्कृत कर दिया गया है। –

6

मुझे पता है कि इसका उत्तर दिया गया है, लेकिन इसे पोस्ट करने के समय के रूप में, ActionBarActivity बहिष्कृत है।

इसके बजाय,

अपने MainActivityAppCompatActivity साथ

+1

भविष्य के संदर्भ के लिए: आप किसी दूसरे को पोस्ट करने के बजाय किसी मौजूदा उत्तर में एक संपादन का सुझाव दे सकते हैं क्योंकि कक्षा को बहिष्कृत कर दिया गया है। –

संबंधित मुद्दे