Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A Button that supports gradient ramp for background, the Angle of the circular, shadow. You can also customize it use hardcode.(支持渐变色背景、带阴影、可设置圆角的按钮)

Notifications You must be signed in to change notification settings

vangeldu/GradientButton

Repository files navigation

GradientButton

A Button that supports gradient ramp for background, the Angle of the circular, shadow. You can also customize it use hardcode.

Preview

Getting Started

In your build.gradle:

dependencies {
	compile 'com.dagang:gradient-button:1.0.1'
}

Usage

<com.dagang.library.GradientButton
 android:layout_width="200dp"
 android:layout_height="80dp"
 app:button_end_color="#EEA9B8"
 app:button_gradient_orientation="LEFT_RIGHT"
 app:button_is_shadowed="true"
 app:button_press_end_color="#EEE5DE"
 app:button_press_start_color="#EEA9B8"
 app:button_radius="30dp"
 app:button_shadow_angle="90"
 app:button_shadow_color="#EE799F"
 app:button_shadow_distance="5dp"
 app:button_shadow_radius="10dp"
 app:button_size="10sp"
 app:button_start_color="#EEE5DE"
 app:button_text="Rich Button"
 app:button_text_color="#9F79EE" />

or use java code

GradientButton gradientButton = (GradientButton) findViewById(R.id.magic_button);
 TextView textView = gradientButton.getButton();
 textView.setText("Custom Button");
 textView.setTextColor(Color.BLUE);
 gradientButton.setButtonRadius(20);
 gradientButton.setShadowRadius(10);
 gradientButton.setShadowColor(Color.RED);
 gradientButton.setButtonStartColor(Color.parseColor("#EEE5DE"));
 gradientButton.setButtonEndColor(Color.parseColor("#9370DB"));
 gradientButton.setButtonPressStartColor(Color.BLACK);
 gradientButton.setButtonPressEndColor(Color.BLACK);
 gradientButton.setButtonGradientOrientation(GradientButton.LEFT_RIGHT);
 gradientButton.getButton().setOnClickListener(new View.OnClickListener() {
 @Override
 public void onClick(View v) {
 Toast.makeText(MainActivity.this, "onClick", Toast.LENGTH_LONG).show();
 }
 });

Thanks

ShadowLayout

Contact me

Email: dagangxx@gmail.com

About

A Button that supports gradient ramp for background, the Angle of the circular, shadow. You can also customize it use hardcode.(支持渐变色背景、带阴影、可设置圆角的按钮)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

AltStyle によって変換されたページ (->オリジナル) /