0

我是 eclipse 和编程的新手,但有一个需要帮助的大学项目。我创建了一个 Android 应用程序项目,它使用 GPS 定位您的位置(实际上是在网上找到的代码并且运行良好)。

这是我的 MainActivity.java :

    package com.example.locationfromgps;

import android.app.Activity;
import android.content.Context;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.view.Menu;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends Activity implements LocationListener{

LocationManager locationManager ;
String provider;

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

    // Getting LocationManager object
    locationManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);

    // Creating an empty criteria object
    Criteria criteria = new Criteria();

    // Getting the name of the provider that meets the criteria
    provider = locationManager.getBestProvider(criteria, false);

    if(provider!=null && !provider.equals("")){

        // Get the location from the given provider
        Location location = locationManager.getLastKnownLocation(provider);

        locationManager.requestLocationUpdates(provider, 20000, 1, this);

        if(location!=null)
            onLocationChanged(location);
        else
            Toast.makeText(getBaseContext(), "Location can't be retrieved", Toast.LENGTH_SHORT).show();

    }else{
        Toast.makeText(getBaseContext(), "No Provider Found", Toast.LENGTH_SHORT).show();
    }
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

@Override
public void onLocationChanged(Location location) {
    // Getting reference to TextView tv_longitude
    TextView tvLongitude = (TextView)findViewById(R.id.tv_longitude);

    // Getting reference to TextView tv_latitude
    TextView tvLatitude = (TextView)findViewById(R.id.tv_latitude);

    // Setting Current Longitude
    tvLongitude.setText("Longitude:" + location.getLongitude());

    // Setting Current Latitude
    tvLatitude.setText("Latitude:" + location.getLatitude() );
}

@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
}
}

该项目将生成类文件为 BuildConfig.class MainActivity.class 和 R.class。我创建了一个不同的新 android 项目,使用配置构建路径 -> 库 -> 添加类文件夹添加了这些类文件,该文件夹有效并且在引用的库中可见。现在我的目标和问题是我是否可以运行这个新项目并让它显示一个位置而不添加实际的 java 代码(整个 MainActivity.java),但只能通过将它引用到类文件。我可以这样做吗?如果是的话怎么办?

PS:我实际上测试了一个只显示整数的小型Java项目;然后将它的类文件添加到另一个java项目中并运行这个新项目并且它工作但是当使用复杂的android应用程序项目时这似乎更复杂。

4

1 回答 1

0

你可以做两件事

  • 如果您不想要 java 代码,请从您要使用的项目中制作一个 jar 并将其放在 libs 文件夹中
  • 将一个项目标记为库项目并使用它
于 2013-04-19T06:35:08.257 回答