gpt4 book ai didi

android - 我应该把 zoomIn 放在我的 MapActivity 的什么地方?

转载 作者:行者123 更新时间:2023-11-30 04:11:26 26 4
gpt4 key购买 nike

我正在编写一个 Android 应用程序,我想在加载 map 后立即放大。我收到以下错误:

java.lang.IllegalArgumentException: width and height must be > 0

MapActivity - width and height must be > 0问题表明问题是 zoomIn() 方法在 onCreate() 方法中。但是当我把它放在 onResume() 方法中时,我得到了同样的错误。

我已经搜索了几个小时,但在 http://developer.android.com 上找不到任何相关信息。或其他任何地方...我也找不到获取 map 加载时间点的方法。 “MapLoadedListener”或类似的东西......

编辑这是我的代码:

public class AMap extends MapActivity{

private final String LOG_TAG = this.getClass().getSimpleName();
private Context mContext;
private Chronometer timer;
private TextView tvCountdown;
private RelativeLayout rl;
private MapView mapView;
private MapController mapController;
private List<Overlay> mapOverlays;
private PlayersOverlay playersOverlay;
private Drawable drawable;
private Builder endDialog;
private ContextThemeWrapper ctw;
private Handler mHandler = new Handler();
private Player player = new Player();
private StartTask startTask;
private EndTask endTask;
private MyDBAdapter mdba;
private Cursor playersCursor;
private UpdateBroadcastReceiver r;


@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.map_view);
mContext = AMap.this;

// set map
mapView = (MapView) findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(true);
mapView.setFocusable(true);

// find the relative layout
rl = (RelativeLayout) findViewById(R.id.rl);

// set the chronometer
timer = (Chronometer) findViewById(R.id.tv_timer);
timer.setBackgroundColor(Color.DKGRAY);

// set the countdown textview
tvCountdown = (TextView) findViewById(R.id.tv_countdown);


// Open DB connection and get players Cursor
mdba = new MyDBAdapter(mContext);
mdba.open();
playersCursor = mdba.getGame();

// Get this player's id and location
Intent starter = this.getIntent();
player.setId(starter.getIntExtra("id", 0));
player.setLatitude(starter.getDoubleExtra("lat", 0));
player.setLongitude(starter.getDoubleExtra("lon", 0));

// Set this player's location as map's center
GeoPoint geoPoint = new GeoPoint((int) (player.getLatitude()*1E6), (int) (player.getLongitude()*1E6));
mapController = mapView.getController();
mapController.setCenter(geoPoint);
mapController.setZoom(15);

Log.d(LOG_TAG, "My playersCursor has "+playersCursor.getCount()+" rows");
// drawable is needed but not used
drawable = this.getResources().getDrawable(R.drawable.ic_launcher);

// set PlayersOverlay (locations and statuses)
playersOverlay = new PlayersOverlay(player.getId(), playersCursor, drawable, this);
mapOverlays = mapView.getOverlays();
mapOverlays.add(playersOverlay);

mHandler.postDelayed(mUpdateTimeTask, 100);
}



private Runnable mUpdateTimeTask = new Runnable() {
public void run() {
int h = mapView.getLayoutParams().height;
int w = mapView.getLayoutParams().width;
Log.d(LOG_TAG, "w = "+w+" , h = "+h);
mHandler.postAtTime(this, SystemClock.elapsedRealtime() + 1000);
}
};



@Override
public void onAttachedToWindow(){
Log.d(LOG_TAG, "Attached to Window");
int h = mapView.getLayoutParams().height;
int w = mapView.getLayoutParams().width;
Log.d(LOG_TAG, " Attached to window: w = "+w+" , h = "+h);
//mapController.zoomInFixing(screenPoint.x, screenPoint.y);
}



public void onWindowFocusChanged(boolean hasFocus){
Log.d(LOG_TAG, "Focus changed to: "+hasFocus);
int h = mapView.getLayoutParams().height;
int w = mapView.getLayoutParams().width;
Log.d(LOG_TAG, " Window focus changed: w = "+w+" , h = "+h);
//mapController.zoomInFixing(screenPoint.x, screenPoint.y);
}



@Override
protected void onStart(){
super.onStart();

// Create and register the broadcast receiver for messages from service
IntentFilter filter = new IntentFilter(AppConstants.iGAME_UPDATE);
r = new UpdateBroadcastReceiver();
registerReceiver(r, filter);


// Create the dialog for end of game
ctw = new ContextThemeWrapper(mContext, android.R.style.Theme_Translucent_NoTitleBar_Fullscreen);
endDialog = new AlertDialog.Builder(ctw);
endDialog.setMessage("End of Game");
endDialog.setCancelable(false);
endDialog.setNeutralButton("OK", new OnClickListener(){

@Override
public void onClick(DialogInterface dialog, int which) {
Intent highScores = new Intent(AMap.this, HighScores.class);
startActivity(highScores);
playersCursor.close();
finish();
}

});

}



@Override
protected void onStop() {

if(!playersCursor.isClosed())
playersCursor.close();

unregisterReceiver(r);
mdba.close();
super.onStop();
}



@Override
protected boolean isRouteDisplayed() {
return false;
}



// Receives signal from NetworkService that DB has been updated
public class UpdateBroadcastReceiver extends BroadcastReceiver {

boolean startSignal, update, endSignal;

@Override
public void onReceive(Context context, Intent intent) {

endSignal = intent.getBooleanExtra("endSignal", false);
if(endSignal){
Log.d(LOG_TAG, "Game Update BroadcastReceiver received End Signal");
endTask = new EndTask();
endTask.execute();
return;
}


update = intent.getBooleanExtra("update", false);
if(update){
Log.d(LOG_TAG, "Game Update BroadcastReceiver received game update");
playersCursor.requery();
mapView.invalidate();
return;
}


startSignal = intent.getBooleanExtra("startSignal", false);
if(startSignal){
Log.d(LOG_TAG, "Game Update BroadcastReceiver received Start Signal");
startTask = new StartTask();
startTask.execute();
return;
}
}
}



class StartTask extends AsyncTask<Void,Integer,Void>{

private final ToneGenerator tg = new ToneGenerator(AudioManager.STREAM_NOTIFICATION, 100);
private final long DELAY = 1200;

@Override
protected Void doInBackground(Void... params) {

int i = 3;
while(i>=0){

publishProgress(i);
try {
Thread.sleep(DELAY);
} catch (InterruptedException e) {
e.printStackTrace();
}
i--;
}

return null;
}


@Override
protected void onProgressUpdate(Integer... progress){

tg.startTone(ToneGenerator.TONE_PROP_PROMPT);
tvCountdown.setText(""+progress[0]);
}


@Override
protected void onPostExecute(Void result) {
rl.removeView(tvCountdown);
timer.setBase(SystemClock.elapsedRealtime());
timer.start();
//enable screen touches
playersOverlay.setGameStarted(true);
}
}



class EndTask extends AsyncTask<Void,Void,Void>{

@Override
protected void onPreExecute(){
//disable screen touches
playersOverlay.setEndOfGame(true);
timer.stop();
}

@Override
protected Void doInBackground(Void... params) {
return null;
}

@Override
protected void onPostExecute(Void result) {
try{
endDialog.show();
}catch(Exception e){
Toast.makeText(mContext, "End of game", Toast.LENGTH_LONG);
Intent highScores = new Intent(AMap.this, HighScores.class);
startActivity(highScores);
playersCursor.close();
finish();
}
mHandler.removeCallbacks(mUpdateTimeTask);
}
}

最终编辑:我最终使用了这段代码。我想反复放大,所以我使用了一个处理程序和一个从 onWindowFocusChanged 开始每 1500 毫秒调用一次自身的可运行对象。那里的MapView 的宽度和高度绝对是正值。 OnAttachedToWindow 可能不会工作,因为它返回 0 的宽度和高度。

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.map_view);
mContext = AMap.this;

// set map
mapView = (MapView) findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(true);
mapView.setFocusable(true);


// Set this player's location as map's center
geoPoint = new GeoPoint((int) (37.974718*1E6), (int) (23.733684*1E6));
projection = mapView.getProjection();
screenPoint = new Point();
projection.toPixels(geoPoint, screenPoint);
mapController = mapView.getController();
mapController.setCenter(geoPoint);
mapController.setZoom(1);

// drawable is needed but not used
Timer t = new Timer();
HTask ht = new HTask();
t.schedule(ht, 15000);

}


public void onWindowFocusChanged(boolean hasFocus){
Log.d(LOG_TAG, "Focus changed to: "+hasFocus+" ("+i+")");
int h = mapView.getHeight();
int w = mapView.getWidth();
Log.d(LOG_TAG, " Window focus changed: w = "+w+" , h = "+h);
if(w > 0 && h > 0) {
mHandler.postDelayed(mUpdateTimeTask, 100);
}
}



private Runnable mUpdateTimeTask = new Runnable() {
public void run() {
int h = mapView.getHeight();
int w = mapView.getWidth();
if(h>0 && w>0){
mapController.zoomIn();
mapController.animateTo(geoPoint);
mHandler.postAtTime(this, SystemClock.uptimeMillis() + 1500);
}

}
};


class HTask extends TimerTask{

@Override
public void run() {
mHandler.removeCallbacks(mUpdateTimeTask);
}
}

最佳答案

只需重写 MapActivity 的 onAttachedToWindow(),放大那里,一切都应该没问题。如果 MapView 附加到窗口并且因此具有宽度和高度,则会调用它

由于代码更新而编辑:

我不确定。这里有一些东西,我会改变,因为它们对我来说很奇怪:

private Runnable mUpdateTimeTask = new Runnable() {
public void run() {
//WHY you asking LayoutPARAMS for their dimensions? try this:
int h = mapView.getHeight();
int w = mapView.getWidth();
Log.d(LOG_TAG, "w = "+w+" , h = "+h);
mHandler.postAtTime(this, SystemClock.elapsedRealtime() + 1000);
}
};

这里也一样:

@Override
public void onAttachedToWindow(){
Log.d(LOG_TAG, "Attached to Window");
int h = mapView.getHeight();
int w = mapView.getWidth();
Log.d(LOG_TAG, " Attached to window: w = "+w+" , h = "+h);
//mapController.zoomInFixing(screenPoint.x, screenPoint.y);
}
public void onWindowFocusChanged(boolean hasFocus){
....

另外,我没看到你在任何地方调用 zoomIn

关于android - 我应该把 zoomIn 放在我的 MapActivity 的什么地方?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10802082/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com