paulieg626 / RatingView

Java code custom view

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RatingView 1.0

Image: Image

XML:

<package.RatingView
 android:id="@+id/ratingview"
 android:layout_width="286dp"
 android:layout_height="103dp"/>

Java code:

RatingView ratingview = ...;

//Indentation from the edge
ratingview.setPadding(10);

//Line thickness
ratingview.setLine(10);

//Round lines
ratingview.setRound(10);

//Background color
ratingview.setBackgroundColor(0x00000000);

//Text color
ratingview.setTextColor(0xffffffff);

//Rating (one,two,three,four,five)
ratingview.setNumber(505000,10000,7656,300060,4000000);

About

Java code custom view

License:GNU General Public License v3.0


Languages

Language:Java 100.0%