# WindView
**Repository Path**: Hancher/WindView
## Basic Information
- **Project Name**: WindView
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2025-08-31
- **Last Updated**: 2025-08-31
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
[](http://www.apache.org/licenses/LICENSE-2.0)


[](https://jitpack.io/#jitpack/android-example)
[](https://android-arsenal.com)
# WindView
WindView is an Android Library to show Weather's Wind & pressure Status
# Screenshot

# 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 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.