Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Weather Icons | 6,622 | 213 | 22 | 6 months ago | 1 | March 30, 2015 | 101 | CSS | ||
215 Weather Themed Icons and CSS | ||||||||||
Mahapps.metro.iconpacks | 1,468 | 214 | 46 | a year ago | 94 | October 18, 2021 | 19 | mit | C# | |
Awesome icon packs for WPF and UWP in one library | ||||||||||
Swifticons | 760 | 14 | 2 years ago | 15 | April 05, 2020 | 27 | mit | Swift | ||
🎢Swift Library for Font Icons - ★ this library | ||||||||||
Weather Icons | 448 | 6 months ago | 9 | May 06, 2021 | 15 | mit | HTML | |||
Free to use animated weather icons. | ||||||||||
Simplicityweather | 413 | 10 months ago | 3 | Dart | ||||||
一款简约风格的 flutter 天气项目,提供实时、多日、24 小时、台风路径以及生活指数等服务,支持定位、删除、搜索等操作。 | ||||||||||
Weather Card | 395 | 3 months ago | 92 | mit | ||||||
Weather Card with animated icons for Home Assistant Lovelace | ||||||||||
Aaf Easydiary | 365 | 12 days ago | 52 | gpl-3.0 | Kotlin | |||||
:blue_book: A diary application optimized for user experience. | ||||||||||
Iconpark | 350 | 7 years ago | CSS | |||||||
Collection of iconfonts | ||||||||||
Weather | 279 | a day ago | 1 | gpl-3.0 | Java | |||||
A privacy friendly weather app for Android with built in rain radar | ||||||||||
Weathericonview | 203 | 20 | 4 years ago | 2 | October 25, 2015 | 1 | apache-2.0 | Java | ||
Weather Icon View for Android applications |
Android library providing custom view for displaying weather icon.
Weather Icon View is based on Weather Icons project by Erik Flowers.
<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" />
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 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 presenting, how to use this library is provided in app
directory of this repository.
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'
}
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]
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.