/*
* Copyright (C) 2009 Jeff Sharkey, http://jsharkey.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jsharkey.sky;
import android.appwidget.AppWidgetManager;
import android.content.ContentProvider;
import android.content.ContentResolver;
import android.content.ContentUris;
import android.content.ContentValues;
import android.content.Context;
import android.content.UriMatcher;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.database.sqlite.SQLiteQueryBuilder;
import android.net.Uri;
import android.provider.BaseColumns;
import android.util.Log;
/**
* Provider that holds widget configuration details, and any cached forecast
* data. Provides easy {@link ContentResolver} access to the data when building
* widget updates or showing detailed lists.
*/
public class ForecastProvider extends ContentProvider {
private static final String TAG = "ForecastProvider";
private static final boolean LOGD = true;
public static final String AUTHORITY = "org.jsharkey.sky";
public interface AppWidgetsColumns {
/**
* Title given by user to this widget, usually shown in medium widgets
* and details title bar.
*/
public static final String TITLE = "title";
public static final String LAT = "lat";
public static final String LON = "lon";
/**
* Temperature units to use when displaying forecasts for this widget,
* usually defaults to {@link #UNITS_FAHRENHEIT}.
*/
public static final String UNITS = "units";
public static final int UNITS_FAHRENHEIT = 1;
public static final int UNITS_CELSIUS = 2;
/**
* Last system time when forecasts for this widget were updated, usually
* as read from {@link System#currentTimeMillis()}.
*/
public static final String LAST_UPDATED = "lastUpdated";
/**
* Country code where this widget exists, such as US or FR. This code is
* used when updating forecasts to use the best-available data source.
*/
public static final String COUNTRY_CODE = "countryCode";
/**
* If known, the nearest METAR station to this location. The METAR data
* is used as a fall-back when no better forecast data is available.
*/
public static final String METAR_STATION = "metarStation";
/**
* Flag specifying if this widget has been configured yet, used to skip
* building widget updates.
*/
public static final String CONFIGURED = "configured";
public static final int CONFIGURED_TRUE = 1;
}
public static class AppWidgets implements BaseColumns, AppWidgetsColumns {
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/appwidgets");
/**
* Directory twig to request all forecasts for a specific widget.
*/
public static final String TWIG_FORECASTS = "forecasts";
/**
* Directory twig to request the forecast nearest the requested time.
*/
public static final String TWIG_FORECAST_AT = "forecast_at";
public static final String CONTENT_TYPE = "vnd.android.cursor.dir/appwidget";
public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/appwidget";
}
public interface ForecastsColumns {
/**
* The parent {@link AppWidgetManager#EXTRA_APPWIDGET_ID} of this
* forecast.
*/
public static final String APPWIDGET_ID = "widgetId";
/**
* Flag if this forecast is an alert.
*/
public static final String ALERT = "alert";
public static final int ALERT_TRUE = 1;
/**
* Timestamp when this forecast becomes valid, in base ready for
* comparison with {@link System#currentTimeMillis()}.
*/
public static final String VALID_START = "validStart";
/**
* High temperature during this forecast period, stored in Fahrenheit.
*/
public static final String TEMP_HIGH = "tempHigh";
/**
* Low temperature during this forecast period, stored in Fahrenheit.
*/
public static final String TEMP_LOW = "tempLow";
/**
* String describing the weather conditions.
*/
public static final String CONDITIONS = "conditions";
/**
* Web link where more details can be found about this forecast.
*/
public static final String URL = "url";
}
public static class Forecasts implements BaseColumns, ForecastsColumns {
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/forecasts");
public static final String CONTENT_TYPE = "vnd.android.cursor.dir/forecast";
public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/forecast";
}
private static final String TABLE_APPWIDGETS = "appwidgets";
private static final String TABLE_FORECASTS = "forecasts";
private DatabaseHelper mOpenHelper;
/**
* Helper to manage upgrading between versions of the forecast database.
*/
private static class DatabaseHelper extends SQLiteOpenHelper {
private static final String DATABASE_NAME = "forecasts.db";
private static final int VER_ORIGINAL = 2;
private static final int VER_ADD_METAR = 3;
private static final int DATABASE_VERSION = VER_ADD_METAR;
public DatabaseHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL("CREATE TABLE " + TABLE_APPWIDGETS + " ("
+ BaseColumns._ID + " INTEGER PRIMARY KEY,"
+ AppWidgetsColumns.TITLE + " TEXT,"
+ AppWidgetsColumns.LAT + " REAL,"
+ AppWidgetsColumns.LON + " REAL,"
+ AppWidgetsColumns.UNITS + " INTEGER,"
+ AppWidgetsColumns.LAST_UPDATED + " INTEGER,"
+ AppWidgetsColumns.COUNTRY_CODE + " TEXT,"
+ AppWidgetsColumns.CONFIGURED + " INTEGER);");
db.execSQL("CREATE TABLE " + TABLE_FORECASTS + " ("
+ BaseColumns._ID + " INTEGER PRIMARY KEY AUTOINCREMENT,"
+ ForecastsColumns.APPWIDGET_ID + " INTEGER,"
+ ForecastsColumns.ALERT + " INTEGER DEFAULT 0,"
+ ForecastsColumns.VALID_START + " INTEGER,"
+ ForecastsColumns.TEMP_HIGH + " INTEGER,"
+ ForecastsColumns.TEMP_LOW + " INTEGER,"
+ ForecastsColumns.CONDITIONS + " TEXT,"
+ ForecastsColumns.URL + " TEXT);");
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
int version = oldVersion;
switch (version) {
case VER_ORIGINAL:
db.execSQL("ALTER TABLE " + TABLE_APPWIDGETS + " ADD COLUMN "
+ AppWidgetsColumns.COUNTRY_CODE + " TEXT");
db.execSQL("ALTER TABLE " + TABLE_APPWIDGETS + " ADD COLUMN "
+ AppWidgetsColumns.METAR_STATION + " TEXT"
没有合适的资源?快使用搜索试试~ 我知道了~
小程序 天气预报加widget源码.rar
共216个文件
svn-base:81个
class:33个
all-wcprops:22个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 175 浏览量
2023-02-03
11:49:57
上传
评论
收藏 825KB RAR 举报
温馨提示
免责声明:资料部分来源于合法的互联网渠道收集和整理,部分自己学习积累成果,供大家学习参考与交流。收取的费用仅用于收集和整理资料耗费时间的酬劳。 本人尊重原创作者或出版方,资料版权归原作者或出版方所有,本人不对所涉及的版权问题或内容负法律责任。如有侵权,请举报或通知本人删除。
资源推荐
资源详情
资源评论
收起资源包目录
小程序 天气预报加widget源码.rar (216个子文件)
all-wcprops 2KB
all-wcprops 1KB
all-wcprops 1KB
all-wcprops 820B
all-wcprops 766B
all-wcprops 766B
all-wcprops 475B
all-wcprops 448B
all-wcprops 388B
all-wcprops 308B
all-wcprops 188B
all-wcprops 83B
all-wcprops 83B
all-wcprops 83B
all-wcprops 74B
all-wcprops 74B
all-wcprops 74B
all-wcprops 73B
all-wcprops 70B
all-wcprops 70B
all-wcprops 70B
all-wcprops 70B
resources.ap_ 76KB
Sky.apk 103KB
NoaaSource.class 8KB
UpdateService.class 7KB
WebserviceHelper.class 7KB
ConfigureActivity.class 7KB
ForecastProvider.class 7KB
MedAppWidget.class 6KB
TinyAppWidget.class 5KB
DetailsActivity.class 5KB
ConfigureActivity$GeocoderTask.class 4KB
ForecastUtils.class 3KB
DetailsActivity$ForecastAdapter.class 3KB
ForecastProvider$DatabaseHelper.class 2KB
R$string.class 2KB
ConfigureActivity$GeocodeQuery.class 2KB
InfoActivity.class 1KB
NoaaSource$1.class 1KB
ForecastProvider$AppWidgets.class 1KB
R$drawable.class 1KB
R$id.class 1001B
ForecastProvider$Forecasts.class 952B
R$style.class 912B
MetarSource.class 845B
Forecast$ParseException.class 740B
ForecastProvider$AppWidgetsColumns.class 713B
R.class 697B
Forecast.class 650B
ForecastProvider$ForecastsColumns.class 595B
R$layout.class 595B
R$color.class 483B
R$xml.class 454B
ForecastSource.class 438B
R$dimen.class 395B
R$attr.class 334B
.classpath 273B
classes.dex 48KB
entries 3KB
entries 2KB
entries 2KB
entries 1KB
entries 1KB
entries 1KB
entries 895B
entries 854B
entries 702B
entries 549B
entries 381B
entries 277B
entries 231B
entries 231B
entries 231B
entries 227B
entries 227B
entries 227B
entries 218B
entries 218B
entries 218B
entries 211B
ForecastProvider.java 16KB
ConfigureActivity.java 13KB
UpdateService.java 11KB
NoaaSource.java 10KB
DetailsActivity.java 8KB
WebserviceHelper.java 8KB
MedAppWidget.java 7KB
R.java 7KB
TinyAppWidget.java 6KB
ForecastUtils.java 5KB
InfoActivity.java 2KB
Forecast.java 1KB
ForecastSource.java 1KB
MetarSource.java 1KB
1-120QR2223SX.png 125KB
1_120818222107_1.png 76KB
1_120818222141_1.png 55KB
1_120818221642_2.png 52KB
weather_showers_scattered.png 5KB
共 216 条
- 1
- 2
- 3
资源评论
大富大贵7
- 粉丝: 389
- 资源: 8868
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功