首页 > 其他 > 详细

主函数天气

时间:2017-09-20 20:42:54      阅读:277      评论:0      收藏:0      [点我收藏+]
package com.coolweather.android;

import android.content.Intent;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

import static com.baidu.location.h.i.R;

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
if (prefs.getString("weather", null) != null) {
Intent intent = new Intent(this, WeatherActivity.class);
startActivity(intent);
finish();
}
else {
String weatherId="CN101110101";
Intent intent = new Intent(this, WeatherActivity.class);
intent.putExtra("weather_id", weatherId);
startActivity(intent);
finish();
}
}

}

主函数天气

原文:http://www.cnblogs.com/tianzijiaozi/p/7563461.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!