Skip to content

🎨 A view to help developers and designers view the View's font size, color, and border.

License

Notifications You must be signed in to change notification settings

maoruibin/ReView

Repository files navigation

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