A Circle View containing Title and Subtitle
Attributes to choose from:
cv_titleText
- The text in the first row.cv_subtitleText
- The text in the second row.cv_titleSize
- The size of the first row text.cv_subtitleSize
- The size of the second row text.cv_strokeWidthSize
- The size of the outter line surrounding the view.cv_fillRadius
- The radius of the inner circle.cv_titleColor
- The color of the first row text.cv_subtitleColor
- The color of the second row text.cv_fillColor
- The color of the inner circle.cv_strokeColorValue
- The color of the outter line circle.cv_backgroundColorValue
- the color between the circle and the stroke.
<com.github.pavlospt.CircleView
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="300dp"
android:layout_height="300dp"
app:cv_titleText="title"
app:cv_subtitleText="subtitle"
app:cv_titleSize="12dp"
app:cv_subtitleSize="9dp"
app:cv_titleColor="@color/white"
app:cv_subtitleColor="@color/red"
app:cv_strokeColorValue="@color/blue"
app:cv_backgroundColorValue="@color/gray"
app:cv_fillColor="@color/green"
app:cv_fillRadius="0.9"
app:cv_strokeWidthSize="5"/>
You can search us on Gradle,please http://gradleplease.appspot.com/ or just add
the dependency to your module's build.gradle
file:
compile 'com.github.pavlospt:circleview:1.3'
Author : Pavlos-Petros Tournaris (p.tournaris@gmail.com)
Google+ : +Pavlos-Petros Tournaris
Facebook : Pavlos-Petros Tournaris
LinkedIn : Pavlos-Petros Tournaris
Thanks to +Filip Puđak and his ProgressPieView that helped me think and create this View.
(In case you use this in your app let me know to make a list of apps that use it! )
Hungry (https://play.google.com/store/apps/details?id=com.hungry)
Copyright 2014 Pavlos-Petros Tournaris
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.