FancyButtonProj
Juste a funcy button with progress bar
List of attributes:
fnBtn:btnStyle with values "stroke" , "fill", "stroke_fill". [default - stroke]
Use this for defining style of your button
-
fnBtn:text [default - ""]
-
fnBtn:textColor [default - black]
-
fnBtn:fillColor [default - transperent]
Use this for changing fill color of button (for "fill" and "stroke_fill" styles)
fnBtn:strokeColor [default - black]
Use this for changing stroke color of button (for "fill" and "stroke_fill" styles)
fnBtn:progressColor [default - black]
Use this for changing color of progress bar (for "fill" and "stroke_fill" styles)
fnBtn:hideFillAfterCollapse [default - false]
Use this for determing if button will stay on screen after collapsing (for "fill" and "stroke_fill", looks like little circle inside of progress bar)
fnBtn:strokeWidth [default - 4]
Determins stroke width (for "stroke" and "stroke_fill")
fnBtn:capsText [default - true]
If true will make all text uppercase
Example of usage:
xmlns:fnBtn="http://schemas.android.com/apk/res-auto" <com.ekalips.fancybuttonproj.FancyButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/btn1"
fnBtn:btnStyle="stroke_fill"
fnBtn:hideFillAfterCollapse="false"
fnBtn:fillColor="@android:color/holo_blue_bright"
fnBtn:progressColor="@android:color/holo_green_light"
fnBtn:strokeColor="@android:color/holo_red_light"
fnBtn:textColor="#000"
fnBtn:text="Button"/>
FancyButton button1 = (FancyButton) findViewById(R.id.btn1);
View.OnClickListener listener = new View.OnClickListener() {
@Override
public void onClick(View view) {
if (view instanceof FancyButton)
{
if (((FancyButton)view).isExpanded())
((FancyButton)view).collapse();
else
((FancyButton)view).expand();
}
}
}
;
button1.setOnClickListener(listener);
Adding to project:
Maven
<dependency>
<groupId>com.ekalips.android</groupId>
<artifactId>fancyprogressbutton</artifactId>
<version>1.1.3</version>
<type>pom</type>
</dependency>
Gradle
compile 'com.ekalips.android:fancyprogressbutton:1.1.3'
Ivy
<dependency org='com.ekalips.android' name='fancyprogressbutton' rev='1.1.3'>
<artifact name='fancyprogressbutton' ext='pom' />
</dependency>
Copyright 2017 Ekalips 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.