Popularity
3.8
Stable
Activity
0.0
Stable
207
14
46

Description

WindView is an Android Library to show Weather's Wind & pressure Status

Code Quality Rank: L4
Programming language: Java
License: Apache License 2.0
Tags: Animations     Views     Weather    
Latest version: v1.1.1

WindView alternatives and similar packages

Based on the "Animations" category.
Alternatively, view WindView alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of WindView or a related project?

Add another 'Animations' Package

README

License Apache 2.0 minSdkVersion 14 compileSdkVersion 25 Release Android Arsenal

WindView

WindView is an Android Library to show Weather's Wind & pressure Status

Screenshot

alt tag

Demo

Setup

Step 1: Add it as a Dependency in Your Root's build.gradle File

allprojects {
    repositories {
        maven { url "https://jitpack.io" }
    }
}
  • add this to your app build.gradle:
dependencies {
    compile 'com.github.AhmadNemati:WindView:1.1.1'
}

Step 2: Add it to your Layout

  <com.github.ahmadnemati.wind.WindView
            android:id="@+id/windview"
            android:layout_width="match_parent"
            android:layout_height="106dp"
            app:barometerTickSpacing="9dp"
            app:bigPoleX="38dp"
            app:labelFontSize="12sp"
            app:numericFontSize="25sp"
            app:poleBottomY="98dp"
            app:pressureLineY="73dp"
            app:pressureTextX="12dp"
            app:pressureTextY="4dp"
            app:smallPoleX="75dp"
            app:windTextX="10dp"
            app:windTextY="29dp" />

Step 3: Initialize WindView and Start it

            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

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.


*Note that all licence references and agreements mentioned in the WindView README section above are relevant to that project's source code only.