Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AhmadNemati/WindView
WindView is an Android Library to show Weather's Wind & pressure Status
https://github.com/AhmadNemati/WindView
android android-library material-design pressure pressure-status weather-wind wind
Last synced: 2 months ago
JSON representation
WindView is an Android Library to show Weather's Wind & pressure Status
- Host: GitHub
- URL: https://github.com/AhmadNemati/WindView
- Owner: AhmadNemati
- License: apache-2.0
- Created: 2016-12-19T20:16:14.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-11T05:44:38.000Z (over 6 years ago)
- Last Synced: 2024-08-02T01:25:33.439Z (6 months ago)
- Topics: android, android-library, material-design, pressure, pressure-status, weather-wind, wind
- Language: Java
- Homepage:
- Size: 13.6 MB
- Stars: 206
- Watchers: 14
- Forks: 46
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-github-android-ui - WindView - 显示天气风速和压力状态 (其他)
README
[![License Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg?style=true)](http://www.apache.org/licenses/LICENSE-2.0)
![minSdkVersion 14](https://img.shields.io/badge/minSdkVersion-14-red.svg?style=true)
![compileSdkVersion 25](https://img.shields.io/badge/compileSdkVersion-25-yellow.svg?style=true)
[![Release](https://img.shields.io/github/release/jitpack/android-example.svg?label=Jitpack)](https://jitpack.io/#jitpack/android-example)
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-WindView-brightgreen.svg?style=flat)](https://android-arsenal.com)
# WindView
WindView is an Android Library to show Weather's Wind & pressure Status# Screenshot
![alt tag](https://raw.githubusercontent.com/AhmadNemati/WindView/master/art/screen.gif)# Demo
- [**demo.apk**](https://raw.githubusercontent.com/AhmadNemati/WindView/master/app/demo.apk)
# Setup
# Step 1: Add it as a Dependency in Your Root's `build.gradle` File```gradle
allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}
```
- add this to your app `build.gradle`:```gradle
dependencies {
compile 'com.github.AhmadNemati:WindView:1.1.1'
}
```# Step 2: Add it to your Layout
```xml
```# Step 3: Initialize WindView and Start it
```java
WindView windView= (WindView) findViewById(R.id.windview);
windView.setPressure(20);
windView.setPressureUnit("in Hg");
windView.setWindSpeed(1);
windView.setWindSpeedUnit(" km/h");
windView.setTrendType(TrendType.UP);
windView.start();
```# Note
Graphical implementations are based on Yahoo Weather Service
# Developed By* Ahmad Nemati
* [ahmadnemati.com](http://ahmadnemati.com) -# License
Copyright 2016 Ahmad Nemati
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 athttp://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.