在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例Android平台开发 → 安卓天气预报源码

安卓天气预报源码

Android平台开发

下载此实例
  • 开发语言:Java
  • 实例大小:2.22M
  • 下载次数:137
  • 浏览次数:1283
  • 发布时间:2020-06-13
  • 实例类别:Android平台开发
  • 发 布 人:baianma
  • 文件格式:.rar
  • 所需积分:8
 相关标签: 天气预报 天气 安卓 源码

实例介绍

【实例简介】本项目是一个基于安卓的天气预报项目源码,主界面使用了DrawerLayout Fragment控件,集成百度定位SDK,天气数据来自百度天气API,
【实例截图】

【核心代码】

package com.example.guanoweather;

import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;

import android.app.Activity;
import android.app.ProgressDialog;
import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.graphics.Color;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.TextView;

import com.example.guanoweather.adapter.ListWeatherAdapter;
import com.example.guanoweather.base.Lunar;
import com.example.guanoweather.bean.CityManagerBean;
import com.example.guanoweather.bean.SQLiteCityManager;

public class FragmentHomeContent extends Fragment {

	public static final String TAG = "HomeContent";
	public static List<CityManagerBean> mcmb = new ArrayList<CityManagerBean>();
	public static TextView currentcity;// 当前城市
	private TextView pm25;// PM值
	private TextView temp;// 温度
	private TextView pollution;// 污染程度
	private TextView todaydate;// 农历
	private ListView tweatherlist;//
	private EditText inputcity;
	private Button sendcity;
	private View homep_content;
	public HomePagerActivity homepa = (HomePagerActivity) getActivity();
	public FragmentAndActivity mactivity;
	static ProgressDialog pDialog;
	public static String lunarStr = "";

	@Override
	public View onCreateView(LayoutInflater inflater, ViewGroup container,
			Bundle savedInstanceState) {

		HomePagerActivity.TAG_H = TAG;
		homep_content = inflater.inflate(R.layout.include_content_activity,
				null);
		initview();
		setpagedata();
		Log.e("TAG", "setpagedata======>>>>");
		return homep_content;
	}

	@Override
	public void onAttach(Activity activity) {
		super.onAttach(activity);
		mactivity = (FragmentAndActivity) activity;

	}

	private void initview() {
		currentcity = (TextView) homep_content.findViewById(R.id.currentcity);
		pm25 = (TextView) homep_content.findViewById(R.id.pm25);
		temp = (TextView) homep_content.findViewById(R.id.temp);
		sendcity = (Button) homep_content.findViewById(R.id.sendcity);
		Log.i("TAG", temp   " <-- temp-->1111111");
		pollution = (TextView) homep_content.findViewById(R.id.pollution_level);
		inputcity = (EditText) homep_content.findViewById(R.id.inputcity);
		tweatherlist = (ListView) homep_content
				.findViewById(R.id.tomorrow_weather);
		todaydate = (TextView) homep_content.findViewById(R.id.today_date_dec);
	}

	public void setpagedata() {
		if(pDialog != null){
			pDialog.dismiss();
		}
		Log.i("TAG", tweatherlist   "-->tweatherlist");
		tweatherlist.setAdapter(new ListWeatherAdapter(getActivity(),
				HomePagerActivity.response.getResults().get(0)
						.getWeather_data()));
		sendcity.setOnClickListener(sendcityonclick);
		currentcity.setText(HomePagerActivity.response.getResults().get(0)
				.getCurrentCity());

		if ("".equals(HomePagerActivity.response.getResults().get(0).getPm25())) {
			pm25.setText("PM2.5:");
			pollution.setText(R.string.no_data);
			pollution.setBackgroundColor(Color.TRANSPARENT);
		} else {
			pm25.setText("PM2.5:"
					  HomePagerActivity.response.getResults().get(0).getPm25());
			int pm = Integer.parseInt(HomePagerActivity.response.getResults()
					.get(0).getPm25());
			Log.i("TAG", pm   " <-- pm");
			if (pm < 75) {
				pollution.setText(R.string.pollution_no);
				pollution.setBackgroundResource(R.drawable.ic_dl_b);
			} else if (pm > 75 && pm < 100) {
				pollution.setText(R.string.pollution_little);
				pollution.setBackgroundResource(R.drawable.ic_dl_c);
			} else if (pm > 100 && pm < 150) {
				pollution.setText(R.string.pollution_mild);
				pollution.setBackgroundResource(R.drawable.ic_dl_d);
			} else if (pm > 150 && pm < 200) {
				pollution.setText(R.string.polltion_moderate);
				pollution.setBackgroundResource(R.drawable.ic_dl_e);
			} else if (pm > 200) {
				pollution.setText(R.string.polltion_severe);
				pollution.setBackgroundResource(R.drawable.ic_dl_f);
			}
		}
		Calendar cal = Calendar.getInstance();
		// 获取系统年月日
		// int date = cal.get(Calendar.YEAR);
		// int date2 = cal.get(Calendar.MONTH) 1;
		// int date3 = cal.get(Calendar.DAY_OF_MONTH);
		Lunar lunar = new Lunar(cal);
		lunarStr = lunar.animalsYear()   "年(";
		lunarStr  = lunar.cyclical()   ")";
		lunarStr  = lunar.toString();
		todaydate.setText("农历:"   lunarStr);

		String todaydata = HomePagerActivity.response.getResults().get(0)
				.getWeather_data().get(0).getDate();
		String temperature = HomePagerActivity.response.getResults().get(0)
				.getWeather_data().get(0).getTemperature();
		String subs = null;
		if (todaydata.length() > 14) {
			subs = todaydata.substring(14, todaydata.length() - 1);
			temp.setText(subs);
		} else if (temperature.length() > 5) {
			String[] str = temperature.split("~ ", 2);
			subs = str[1];
			temp.setText(subs);
		} else {
			temp.setText(temperature);
		}

		// 创建SQLite对象并不会创建数据库
		SQLiteCityManager sqlite = new SQLiteCityManager(getActivity(),
				"testdb", null, 1);
		// 读写数据库
		SQLiteDatabase db = sqlite.getWritableDatabase();
		// ContentValues键值对,类似HashMap
		ContentValues cv = new ContentValues();
		// key为字段名,value为所存数据
		cv.put("cityname", HomePagerActivity.response.getResults().get(0)
				.getCurrentCity());
		cv.put("imageurl", HomePagerActivity.response.getResults().get(0)
				.getWeather_data().get(0).getDayPictureUrl());
		cv.put("weather", HomePagerActivity.response.getResults().get(0)
				.getWeather_data().get(0).getWeather());
		cv.put("temp", subs);
		Cursor cursor = db.query("guanoweather", null, null, null, null, null,
				null);
		int i = 0;
		while (cursor.moveToNext()) {
			i  ;
			Log.i("TAG", i   "==>>i");
			String cityname = cursor.getString(cursor
					.getColumnIndex("cityname"));
			String weathertext = cursor.getString(cursor
					.getColumnIndex("weather"));
			cityname = cityname.substring(0, 2);
			String citytext = currentcity.getText().toString().substring(0, 2);
			if (citytext.equals(cityname)) {
				if ("点击更新".equals(weathertext)) {
					db.update("guanoweather", cv, "weather = ?",
							new String[] { "点击更新" });
					db.close();
				}
				return;
			}
		}
		// 插入,第二个参数:不能为null的字段
		db.insert("guanoweather", "cityname", cv);
		db.close();
	}

	private View.OnClickListener sendcityonclick = new View.OnClickListener() {

		@Override
		public void onClick(View v) {
			pDialog = new ProgressDialog(getActivity());
			pDialog.setCancelable(true);// 点击可以取消Dialog的展现
			pDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
			pDialog.setMessage("正在更新...");
			pDialog.show();
			mactivity.senddata(inputcity);
			mactivity.sendcitytext(inputcity.getText().toString());
		}
	};
}

实例下载地址

安卓天气预报源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警