All Projects → AhmadNemati → Windview

AhmadNemati / Windview

Licence: apache-2.0
WindView is an Android Library to show Weather's Wind & pressure Status

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Windview

Materialstepperview
Steppers - Material Design Components for Android
Stars: ✭ 2,187 (+966.83%)
Mutual labels:  material-design
React Md
React material design - An accessible React component library built from the Material Design guidelines in Sass
Stars: ✭ 2,284 (+1014.15%)
Mutual labels:  material-design
Django Material
Material Design for Django
Stars: ✭ 2,362 (+1052.2%)
Mutual labels:  material-design
Acgn Community
A community app for news,animation,music and novels developed material design style.
Stars: ✭ 193 (-5.85%)
Mutual labels:  material-design
Vue Cool Select
Select with autocomplete, slots, bootstrap and material design themes.
Stars: ✭ 195 (-4.88%)
Mutual labels:  material-design
Material Admin
A Material Designed Admin Framework based on Spring boot2 And Bootstrap
Stars: ✭ 196 (-4.39%)
Mutual labels:  material-design
Elegantdialog
A beautiful, customizable and interactive dialog for Android written in Kotlin/Java 😍
Stars: ✭ 189 (-7.8%)
Mutual labels:  material-design
Design Blocks
A set of 170+ Bootstrap based design blocks ready to be used to create clean modern websites.
Stars: ✭ 13,317 (+6396.1%)
Mutual labels:  material-design
React Md Spinner
Material Design spinner components for React.js.
Stars: ✭ 195 (-4.88%)
Mutual labels:  material-design
Material Start
Starter Repository for AngularJS Material
Stars: ✭ 2,234 (+989.76%)
Mutual labels:  material-design
Vantage Ui Template
Template for UI applications in Vantage
Stars: ✭ 193 (-5.85%)
Mutual labels:  material-design
Materialfabspeeddial
Android UI library of FAB speed dial
Stars: ✭ 193 (-5.85%)
Mutual labels:  material-design
Materialcalendar
A Material design calendar inspired by the CalendarView of School Diary.
Stars: ✭ 196 (-4.39%)
Mutual labels:  material-design
Wanandroid flutter
Flutter完整项目,玩Android-Flutter版客户端。
Stars: ✭ 190 (-7.32%)
Mutual labels:  material-design
Material Singleinputform
A single EditText instead of a classical form. Library that implements flavienlaurent's singleinputform
Stars: ✭ 202 (-1.46%)
Mutual labels:  material-design
Wanna
💡✔ Wanna is an implementation of a 21st-century to-do list app.
Stars: ✭ 189 (-7.8%)
Mutual labels:  material-design
Materialskin
Theming .NET WinForms, C# or VB.Net, to Google's Material Design Principles.
Stars: ✭ 2,358 (+1050.24%)
Mutual labels:  material-design
Flutterexampleapps
[Example APPS] Basic Flutter apps, for flutter devs.
Stars: ✭ 15,950 (+7680.49%)
Mutual labels:  material-design
Arctic admin
Responsive Theme for ActiveAdmin
Stars: ✭ 201 (-1.95%)
Mutual labels:  material-design
Iconshowcase Dashboard
A full-of-features, easy-to-customize, free and open source, Material Design dashboard for icon packs.
Stars: ✭ 197 (-3.9%)
Mutual labels:  material-design

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 the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].