public void WeatherInfo(){
.......
String weatherLocation = weatherLoc[1].toString();
........
}
基本的に、WeatherInfo と呼ばれる空域にあるこの動的文字列があります。
しかし、このように別のボイドから weatherLocation 文字列を取得する必要があります
public void WeatherChecker(){
YahooWeatherUtils yahooWeatherUtils = YahooWeatherUtils.getInstance();
yahooWeatherUtils.queryYahooWeather(getApplicationContext(), weatherLocation, this);
}
したがって、この void から weatherLocation にアクセスできる必要があります。
どうすればいいですか?