当前位置: 首页 > 面试题库 >

是否要使用GoogleMaps-OnMyLocationChangeListener但无法实现?任何其他选择

须鸿祯
2023-03-14
问题内容

我想利用Google Maps OnlocationChangeListener,但是因为我已经实现了

implements DatePickerFragment.OnDATEClickListener{

并且由于需要保持上述实现,这使得实现OnlocationChangeListener非常困难。onLocationchangelistener目前,代码也进行了
扩展,fragmentActivity而我当前的代码extends fragment又产生了更多问题。

问题是: 由于已经实现和扩展,我无法扩展或实现任何其他功能。这意味着我无法让OnlocationChangeListener工作

您知道周围有什么工作吗?

(允许我在实现的DatePickerFragment.OnDATEClickListener同时也实现Google的实现OnlocationChangeListener。同时让我的代码继续扩展fragment,而不是fragmentactivity)

我当前的代码

public class HomeFragment extends Fragment implements DatePickerFragment.OnDATEClickListener{

    public HomeFragment(){}

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {

        View rootView = inflater.inflate(R.layout.fragment_home, container, false);

        return rootView;
    }
}

Google Maps位置更改监听器代码:

    public class MainActivity extends FragmentActivity implements OnMyLocationChangeListener {

        GoogleMap googleMap;

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

            // 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_main.xml
                SupportMapFragment fm = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);

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

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

                // Setting event handler for location change
                googleMap.setOnMyLocationChangeListener(this);

            }

        }


        @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_main, menu);
            return true;
        }


        @Override
        public void onMyLocationChange(Location location) {

//Location stuff

        }
    }

问题答案:

这是我在示例应用程序中实现 Google Maps的方式

首先将支持库添加到eclipse中,并确保您正在构建的应用程序包含该库。

之后的实现是这样的:

public class MainActivity extends FragmentActivity implements LocationListener,
        OnMapClickListener, OnMapLongClickListener {
    private static final int GPS_ERRORDIALOG_REQUEST = 9001;

    GoogleMap map;
    List<Address> matches;
    TextView tvLocation;
    String addressText;
    double latitude;
    double longitude;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        if (servicesOK()) {
            Toast.makeText(this, "Ready to map!!", Toast.LENGTH_LONG).show();
            setContentView(R.layout.activity_main);

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

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

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

            // Getting LocationManager object from System Service
            // LOCATION_SERVICE
            LocationManager locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);

            // 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);

        } else {
            setContentView(R.layout.activity_main);

        }

    }

    @Override
    public void onProviderDisabled(String provider) {
        // TODO Auto-generated method stub
    }

    @Override
    public void onProviderEnabled(String provider) {
        // TODO Auto-generated method stub
    }

    @Override
    public void onStatusChanged(String provider, int status, Bundle extras) {
        // TODO Auto-generated method stub
    }

对于位置更改:

    @Override
    public void onLocationChanged(Location location) {
        tvLocation = (TextView) findViewById(R.id.tv_location);

        // Getting latitude of the current location
        latitude = location.getLatitude();

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

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

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

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

        map.addMarker(new MarkerOptions().position(
                new LatLng(latitude, longitude)).title(addressText));

        map.setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener() {

            @Override
            public boolean onMarkerClick(Marker marker) {
                Toast.makeText(getBaseContext(), "marker clicked",
                        Toast.LENGTH_LONG).show();
                return false;
            }

        });

        // TODO Auto-generated method stub

        Geocoder geoCoder = new Geocoder(this);

        try {
            matches = geoCoder.getFromLocation(latitude, longitude, 1);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        Address bestMatch = (matches.isEmpty() ? null : matches.get(0));
        addressText = String.format("%s, %s, %s", bestMatch
                .getMaxAddressLineIndex() > 0 ? bestMatch.getAddressLine(0)
                : "", bestMatch.getLocality(), bestMatch.getCountryName());

    }

    @Override
    public void onMapLongClick(LatLng point) {
        // TODO Auto-generated method stub

    }

    @Override
    public void onMapClick(LatLng point) {
        // TODO Auto-generated method stub

    }

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

检查服务是否正常,然后继续构建地图

    public boolean servicesOK() {

        int isAvailable = GooglePlayServicesUtil
                .isGooglePlayServicesAvailable(this);

        if (isAvailable == ConnectionResult.SUCCESS) {

            return true;

        } else if (GooglePlayServicesUtil.isUserRecoverableError(isAvailable)) {

            Dialog dialog = GooglePlayServicesUtil.getErrorDialog(isAvailable,
                    this, GPS_ERRORDIALOG_REQUEST);
            dialog.show();

        } else {

            Toast.makeText(this, "Cant connect!!", Toast.LENGTH_SHORT).show();

        }
        return false;
    }
}

最后,清单:

<permission
    android:name="com.mike.maps.permission.MAPS_RECEIVE"
    android:protectionLevel="signature" />

    <uses-permission android:name="com.example.mapsexample.permission.MAPS_RECEIVE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
    <uses-permission android:name ="android.permission.ACCESS_NETWORK_STATE"/>

    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true"/>

并在 应用程序标签中

    <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="Your Api" />

希望这能回答您的问题.. :)



 类似资料:
  • 问题内容: 在我的Java项目中,我有各种类型的Traders的载体。这些不同类型的交易者是交易者类的子类。现在,我有一个以交易者为参数并将其存储在向量中约50次的方法。我遇到了问题,因为存储同一对象50次仅存储同一对象的50个 引用 。我需要存储该对象的50个 副本 。我已经研究了实现Clone的方法,但是我不希望定义Trader类型的程序员不必担心使其类可克隆。另外,正如本页面所指出的,实施克

  • 问题内容: 我正在尝试创建第三方WS的客户端。我的应用程序在JBoss AS 6(及其Apache CXF 2.3.1堆栈)上运行。我通过wsconsume(wsdl2java)生成了客户端代码。当我尝试连接到WS时,出现异常: WSDL的Auth部分如下所示: 客户代码: 我尝试获取导管时抛出异常: 我怀疑这是由于非标准的MS政策所致,我需要适当的Intercerptor来处理此政策,但是有人可

  • 我从一个使用Jsoup的网站上获得。连接() 当我们使用Jsoup或任何其他技术来请求使用我们的代码和平时,这是有效的还是合法的??。 . 我们试图使用Jsoup.connect(网址)或其他技术访问的网址。这样网址所有者就可以指控我们违反任何类型的信息技术条款。 . 这是合法的访问任何类型的网站,如私人网站,社交网站,PSU网站,政府网站从我们的和平的代码,并使用他们的反应过度发展 . 谢谢。

  • 问题内容: 我正在创建一个应该与任何类型的数字(浮点数,整数等)的数组一起使用的类,因此,这里有一种方法: 否则将无法编译,因为“ Number”没有实现“ + =”或“ / =”运算符。更糟糕的是,java的Number类甚至没有实现最基本的运算符,例如“ +”或“-”!如果java因为认为无法添加数字而不允许我进行编译,那么如何制作一个返回数字数组平均值的方法呢? 问题答案: 您误解了数字在J

  • 所以我肯定有类似的东西在那里,但我已经搜索了一个小时,还没有找到确切的我要找的东西。假设我有一个这样的类: 我该如何制作这样的作品?

  • 问题内容: 他(@Mack)使用T-SQL和DMV完成了类似的回答。 如果可能的话,这可能吗? 我会将其发布为评论,但是我还没有足够的声誉… 问题答案: 您可以但不使用DMV,但需要一个相关的动态管理 功能 (DMF) 这是代码: 这是指向DMV和DMF的MSDN页面的链接。