All Projects → pwittchen → Weathericonview

pwittchen / Weathericonview

Licence: apache-2.0
Weather Icon View for Android applications

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Weathericonview

Weatherview
WeatherView is an Android Library let you make cool weather animations for your app
Stars: ✭ 426 (+106.8%)
Mutual labels:  weather, view
weather-icons
Free to use animated weather icons.
Stars: ✭ 341 (+65.53%)
Mutual labels:  weather, icon
Folder Icons
Custom folder icons for macOS & Windows
Stars: ✭ 186 (-9.71%)
Mutual labels:  icon
Android 3d Layout
Wow effect, transform your layout into 3D views
Stars: ✭ 199 (-3.4%)
Mutual labels:  view
Svelte Awesome
Awesome SVG icon component for Svelte JS, built with Font Awesome icons. Based on Justineo/vue-awesome
Stars: ✭ 193 (-6.31%)
Mutual labels:  icon
Awesome Iconjar
44 Collect free icon sets for iconjar. 收集免费的图标包,iconjar 格式(44套)。
Stars: ✭ 188 (-8.74%)
Mutual labels:  icon
Wiv
Window image viewer [DEPRECATED]
Stars: ✭ 196 (-4.85%)
Mutual labels:  view
Akar Icons
A perfectly rounded icon library made for designers, developers, and pretty much everyone.
Stars: ✭ 184 (-10.68%)
Mutual labels:  icon
Codeview
Android Code Highlighter
Stars: ✭ 204 (-0.97%)
Mutual labels:  view
Shimmer Recyclerview X
🌀 ShimmerRecyclerViewX for AndroidX
Stars: ✭ 193 (-6.31%)
Mutual labels:  view
Good Weather
Open source weather app for Andorid
Stars: ✭ 198 (-3.88%)
Mutual labels:  weather
Swiftconfettiview
Swift Confetti View ! Who doesn't like confetti? 🎉🎉
Stars: ✭ 193 (-6.31%)
Mutual labels:  view
Stepviewandroid
An Android library (Step View) written in kotlin to display steps (without any max-min limits) along with the status/description using a single view. It also supports some really cool features.
Stars: ✭ 191 (-7.28%)
Mutual labels:  view
Pagemenulayout
【Android分页菜单控件】快速实现美团、饿了么、京东、淘宝首页分页菜单效果
Stars: ✭ 197 (-4.37%)
Mutual labels:  view
Yii2 Minify View
Yii2 View component with minification css & js
Stars: ✭ 186 (-9.71%)
Mutual labels:  view
Eficonfont
Yet another stupid wrapper of icon font.
Stars: ✭ 200 (-2.91%)
Mutual labels:  icon
Fontawesome.sharp
A library for using Font Awesome in WPF & Windows Forms applications
Stars: ✭ 185 (-10.19%)
Mutual labels:  icon
Flutter weather
An elegant, easy on the eyes weather app built with flutter
Stars: ✭ 193 (-6.31%)
Mutual labels:  weather
Vue Awesome
Awesome SVG icon component for Vue.js, built-in with Font Awesome icons.
Stars: ✭ 2,302 (+1017.48%)
Mutual labels:  icon
Weather
Taiwan's Weather Maps! 想查詢每個地方的天氣嗎!?藉由 Google Maps API 的地圖服務,以及中央氣象局網站的天氣預報,讓你快速輕鬆的查詢台灣 368 個鄉鎮的天氣概況!
Stars: ✭ 206 (+0%)
Mutual labels:  weather

Weather Icon View

Android Arsenal Build Status Maven Central

Android library providing custom view for displaying weather icon.

Weather Icon View is based on Weather Icons project by Erik Flowers.

Contents

Usage

In XML Layout

<com.github.pwittchen.weathericonview.WeatherIconView
    android:id="@+id/my_weather_icon"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    custom:weatherIconResource="@string/wi_day_sunny_overcast"
    custom:weatherIconColor="@android:color/black"
    custom:weatherIconSize="100" />

In Java code

WeatherIconView weatherIconView;
weatherIconView = (WeatherIconView) findViewById(R.id.my_weather_icon);
weatherIconView.setIconResource(getString(R.string.wi_day_sunny_overcast));
weatherIconView.setIconSize(100);
weatherIconView.setIconColor(Color.BLACK);

Icons reference

Icons reference is available at: http://erikflowers.github.io/weather-icons/

In Weather Icon View for Android, dashes (-) are replaced with underscores (_), but names of the icons are the same.

Example

Example presenting, how to use this library is provided in app directory of this repository.

Screenshot

Screenshot

Download

You can depend on the library through Maven:

<dependency>
    <groupId>com.github.pwittchen</groupId>
    <artifactId>weathericonview</artifactId>
    <version>1.1.0</version>
</dependency>

or through Gradle:

dependencies {
  compile 'com.github.pwittchen:weathericonview:1.1.0'
}

Who is using this library?

Are you using this library in your app and want to be listed here? Send me a Pull Request or an e-mail to [email protected]

References

License

Copyright 2015 Piotr Wittchen

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].