【发布时间】:2014-07-27 02:31:07
【问题描述】:
我是 android 新手,我有一个问题。单击按钮时,我想将变量“adresa”从for(或while)循环发送到另一个活动,但总是从循环发送最后一个值。 这是代码: PS。对不起我的英语不好 这是第一个活动
package com.example.locationtracker;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import android.app.Activity;
import android.content.Intent;
import android.database.Cursor;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.app.ActionBar.LayoutParams;
import android.widget.LinearLayout;
import android.widget.Toast;
import android.widget.Button;
public class DatabasesActivity extends Activity {
public static String adresa;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final DBAdapter2 db = new DBAdapter2(this);
//---get a posao---
db.open();
final Cursor c = db.getPosao(0);
if (c.moveToFirst()){
final int x = 0;
final LinearLayout lm = (LinearLayout) findViewById(R.id.linearMain);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
// while (c.moveToNext()) {
for (c.moveToFirst(); !c.isAfterLast(); c.moveToNext()) {
LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinearLayout.HORIZONTAL);
final Button button = new Button(this) ;
button.setId(x+1);
button.setText("id: " + c.getString(0) + "\n" +
"Ime: " + c.getString(1) + "\n" +
"Adresa: " + c.getString(2) + "\n" +
"Telefon: " + c.getString(3) + "\n" +
"Napomena: " + c.getString(4) + "\n" +
"Status: " + c.getString(5));
button.setLayoutParams(params);
adresa = c.getString(2);
button.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
// Perform action on click
Intent activityChangeIntent = new Intent(DatabasesActivity.this, PrikazMape.class);
activityChangeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
activityChangeIntent.putExtra("add", adresa);
DatabasesActivity.this.startActivity(activityChangeIntent);
}
});
//Add button to LinearLayout
ll.addView(button);
//Add button to LinearLayout defined in XML
lm.addView(ll);
}
}
else
Toast.makeText(this, "No contact found", Toast.LENGTH_LONG).show();
db.close();
try {
String destPath = "/data/data/" + getPackageName() +
"/databases";
File f = new File(destPath);
if (!f.exists()) {
f.mkdirs();
f.createNewFile();
//---copy the db from the assets folder into
// the databases folder---
CopyDB(getBaseContext().getAssets().open("mydb"),
new FileOutputStream(destPath + "/MyDB"));
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
public void CopyDB(InputStream inputStream,
OutputStream outputStream) throws IOException {
//---copy 1K bytes at a time---
byte[] buffer = new byte[1024];
int length;
while ((length = inputStream.read(buffer)) > 0) {
outputStream.write(buffer, 0, length);
}
inputStream.close();
outputStream.close();
}
}
第二个
package com.example.locationtracker;
import java.io.IOException;
import java.util.List;
import java.util.Locale;
import com.google.android.gms.maps.*;
import com.google.android.gms.maps.model.*;
import android.app.Activity;
import android.content.Intent;
import android.location.Address;
import android.location.Geocoder;
import android.os.Bundle;
public class PrikazMape extends Activity {
double latitude;
double longtitude;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.map_activity);
Intent mInt = getIntent();
String adresa = mInt.getStringExtra("add");
Geocoder geoCoder = new Geocoder(PrikazMape.this);
try {
List<Address> addresses =
geoCoder.getFromLocationName(adresa, 1);
if (addresses.size() > 0) {
latitude = addresses.get(0).getLatitude();
longtitude = addresses.get(0).getLongitude(); }
} catch (IOException e) { // TODO Auto-generated catch block
e.printStackTrace(); }
LatLng pos = new LatLng(latitude, longtitude);
// Get a handle to the Map Fragment
GoogleMap map = ((MapFragment) getFragmentManager()
.findFragmentById(R.id.map)).getMap();
map.setMyLocationEnabled(true);
map.moveCamera(CameraUpdateFactory.newLatLngZoom(pos, 13));
map.addMarker(new MarkerOptions()
.title(adresa)
.snippet("Ovde nešto napiši.")
.position(pos));
}
}
谢谢!
【问题讨论】:
标签: java android for-loop android-activity android-button