All Projects → maoruibin → Review

maoruibin / Review

Licence: apache-2.0
🎨 A view to help developers and designers view the View's font size, color, and border.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Review

Splitgraph
Splitgraph command line client and python library
Stars: ✭ 209 (-11.44%)
Mutual labels:  developer-tools
Devutils App
Offline Toolbox for Developers
Stars: ✭ 2,735 (+1058.9%)
Mutual labels:  developer-tools
Docker Mastery For Nodejs
Docker Mastery for Node.js Projects, From a Docker Captain
Stars: ✭ 231 (-2.12%)
Mutual labels:  developer-tools
Systemjs Hot Reloader
reloads your modules as needed so that you can have satisfyingly fast feedback loop when developing your app
Stars: ✭ 215 (-8.9%)
Mutual labels:  developer-tools
Rustplayground
Quickly test Rust code on macOS
Stars: ✭ 222 (-5.93%)
Mutual labels:  developer-tools
Rested
A REST client for browsers
Stars: ✭ 225 (-4.66%)
Mutual labels:  developer-tools
Kubefwd
Bulk port forwarding Kubernetes services for local development.
Stars: ✭ 2,713 (+1049.58%)
Mutual labels:  developer-tools
Monocorpus
A notepad for software and machine learning
Stars: ✭ 234 (-0.85%)
Mutual labels:  developer-tools
Cargo Modules
A cargo plugin for showing a tree-like overview of a crate's modules.
Stars: ✭ 222 (-5.93%)
Mutual labels:  developer-tools
Audion
Audion (Web Audio Inspector) is a Chrome extension that adds a Web Audio panel to Developer Tools. This panel visualizes the web audio graph in real-time and lets users inspect nodes.
Stars: ✭ 230 (-2.54%)
Mutual labels:  developer-tools
Ios
Unofficial app for Swift Evolution
Stars: ✭ 217 (-8.05%)
Mutual labels:  developer-tools
Dev Tools
The most popular software developer tools in one app
Stars: ✭ 221 (-6.36%)
Mutual labels:  developer-tools
Streamlit
Streamlit — The fastest way to build data apps in Python
Stars: ✭ 16,906 (+7063.56%)
Mutual labels:  developer-tools
Sfpowerkit
A Salesforce DX Plugin with multiple functionalities aimed at improving development and operational workflows
Stars: ✭ 214 (-9.32%)
Mutual labels:  developer-tools
Opentouryo
”Open棟梁”は、長年の.NETアプリケーション開発実績にて蓄積したノウハウに基づき開発した.NET用アプリケーション フレームワークです。 (”OpenTouryo” , is an application framework for .NET which was developed using the accumulated know-how with a long track record in .NET application development.)
Stars: ✭ 233 (-1.27%)
Mutual labels:  developer-tools
Yalc
Work with yarn/npm packages locally like a boss.
Stars: ✭ 3,155 (+1236.86%)
Mutual labels:  developer-tools
Awesome Ci
List of Continuous Integration services
Stars: ✭ 2,737 (+1059.75%)
Mutual labels:  developer-tools
React Sight
Visualization tool for React, with support for Fiber, Router (v4), and Redux
Stars: ✭ 2,716 (+1050.85%)
Mutual labels:  developer-tools
Wakapi
📊 A minimalist, self-hosted WakaTime-compatible backend for coding statistics
Stars: ✭ 232 (-1.69%)
Mutual labels:  developer-tools
Hack
A typeface designed for source code
Stars: ✭ 14,543 (+6062.29%)
Mutual labels:  developer-tools

ReView

Android Arsenal

A view to help developers and designers view the View's font size, color, and border, so far, it only support TextView Button and ImageView.

Only by one line code,and all TextView、Button、ImageView and others support view will show text border、color attr in top of View like gif demo.

An introductory article written in Chinese 关于 ReView

Demo

download link

or Qrcode

qrcode

Usage

Step 1

Add the JitPack repository to your build file

allprojects {
	repositories {
		...
		maven { url "https://jitpack.io" }
	}
}

Step 2

Add the dependency

dependencies {
	 compile 'com.github.maoruibin:ReView:1.1.0'
}

Step 3

use RVHelper.makeLayoutToReviewMod(context) like this.

@Override
protected void onCreate(Bundle savedInstanceState) {
    RVHelper.makeLayoutToReviewMod(this);
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}

Note:it should be called before super.onCreate()

Step 4

Setting options

// set current is review mod or not
RVHelper.isReviewMod(true);
// set is show border or not 
RVHelper.isShowBorder(true);
// set is show text color or not
RVHelper.isShowTextColor(true);
// set is show text size by dp or not
RVHelper.isShowTextSizeDp(true);
// set is show text size by sp or not
RVHelper.isShowTextSizeSp(true);

you can get more information by watch demo.

Inspired by douban

Support View

  • TextView
  • Button
  • ImageView
  • EditText
  • CheckBox
  • RadioButton
  • ProgressBar

Author

http://gudong.site

https://github.com/maoruibin

http://weibo.com/maoruibin

License

Copyright 2016 GuDong

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