android-flat-button icon indicating copy to clipboard operation
android-flat-button copied to clipboard

FButton - a flat button library for Android

Results 37 android-flat-button issues
Sort by recently updated
recently updated
newest added

Can you please migrate this library from Maven Central to J Center?

android.view.InflateException: Binary XML file line #89: Error inflating class info.hoang8f.widget.FButton it works fine in any other android version

JAVA version 1.8 Android Studio 1.5 `build.gradle` ``` defaultConfig { applicationId "com.xxxx.handlerdemo" minSdkVersion 15 targetSdkVersion 23 versionCode 1 versionName "1.0" multiDexEnabled true } dependencies { compile fileTree(dir: 'libs', include: ['*.jar'])...

I've tried to add the border on the button, but it doesn't work. I've followed this article http://android--code.blogspot.co.id/2015/01/amdroid-button-strokeborder-color.html, on the normal button its work. But is it possible to add...

Hi, I added the compile line in my build.graddle `compile 'info.hoang8f:fbutton:1.0.5'` xml dependency in my root element ``` xmlns:fbutton="http://schemas.android.com/apk/res-auto" ``` but when I add following button, ``` ``` it is...

In attached layout I tried to have 3 buttons in one line with the same width. So I used LinearLayout with layout_weight. The problem is when I press one of...

Not working setPressed(true) method for button: final FButton likeButton = (FButton) v.findViewById(R.id.like_post_button); likeButton.setOnClickListener(new FButton.OnClickListener() { @Override public void onClick(View v) { likeButton.setPressed(true); } });

When the button is disabled and then re-enable the shadow color is removed, returning to its default with a 80% brightness. The solution is remove the variable `mShadowColor` of allocation...