我對Android和Java相當陌生,希望你能幫助我解決這個問題。從外部類訪問TextView
我有一個嵌套類:
public class MyLocationListener implements LocationListener
{
public void onLocationChanged(Location loc)
{
loc.getLatitude();
loc.getLongitude();
String loTude = "Longitude:" + loc.getLongitude();
String laTude = "Latitude: " + loc.getLatitude();
((TextView) findViewById(R.id.tvLong)).setText(loTude);
((TextView) findViewById(R.id.tvLat)).setText(laTude);
}
如何從我的外部類訪問兩個字符串loTude和laTude? 我是否需要通過一個對象從方法中返回它們,或者還有其他方法嗎?
寫在這個類中的方法,該方法會返回字符串2 s通過一個對象,你想要或寫的任何類2種方法,將分別返回loTude和laTude :) – rohit 2012-03-09 09:55:12