Android library providing custom view for displaying weather icon.
Weather Icon View is based on Weather Icons project by Erik Flowers.
- Contribution by rahulstech
- Usage
- Icons reference
- Example
- Screenshot
- Download
- Who is using this library?
- References
- License
Contribution by rahulstech
- Changed minSdk to 21 and compileSdk to 36
- Changed gradle version to 8.7 and Android Gradle Plugin Version to 8.6.1
- Updated dependencies compatible with min and target sdk version
<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.
- In project level build.gradle add the following
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' } // add this line
}- You can depend on the library through Maven:
<dependency>
<groupId>com.github.rahulstech</groupId>
<artifactId>weathericonview</artifactId>
<version>latest-version</version>
</dependency>or through Gradle:
dependencies {
compile 'com.github.rahulstech:weathericonview:<latest-version>'
}Are you using this library in your app and want to be listed here? Send me a Pull Request or an e-mail to piotr@wittchen.io
- Original weather-icons project
- SkyIcons - similar project for Android, but with animations
- weather-icons usage in JavaScript application
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.