#RippleView
Here are some examples of how these rippleview could look like:
#Usage
This library now works with gradle and will soon be available on the central maven repository. Just add the following repository to your app build.gradle:
dependencies { // other repos ... compile 'com.github.znacloud:rippleview:1.0.0' } After adding the gradle depedency from above you can go to your xml layout and add the following code for a squareprogressbar:
<com.github.znacloud.RippleView xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/rpv_test" android:layout_width="128dp" android:layout_height="128dp" android:layout_centerInParent="true" app:text="TEST" app:textColor="@color/text_state_color" app:textSize="22sp" app:circleColor="@color/circle_state_color" app:ringColor="@color/ring_state_color" app:bdWidth="4dp" app:bdColor="@color/ring_state_color" app:shadowRadius="2dp"/>To set some basic settings use the following java-code:
RippleView view = (RippleView)findViewById(R.id.rpv_test); view.setText("TE+ST"); view.setTextSize(30); view.setTextColor(getResources().getColorStateList(R.color.text_state_color)); view.setBdColor(getResources().getColorStateList(R.color.ring_state_color)); view.setBdWidth(6); view.setShadowRadius(16); view.setRingColor(getResources().getColorStateList(R.color.ring_state_color)); view.setCircleColor(getResources().getColorStateList(R.color.circle_state_color));Copyright 2015-2015 Stephan Zeng 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. 

