RadioRealButton icon indicating copy to clipboard operation
RadioRealButton copied to clipboard

A custom radio button for Android API 12+

Results 25 RadioRealButton issues
Sort by recently updated
recently updated
newest added

Hi, Fixed the issue #41 related to android pie. Can you please accept the pull request

android { compileSdkVersion 29 buildToolsVersion "29.0.2" defaultConfig { applicationId "com.soha_web.kamter" minSdkVersion 19 targetSdkVersion 29 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true } buildTypes { release { minifyEnabled false...

Getting this crash on Android P ``` java.lang.IllegalArgumentException: Invalid Region.Op - only INTERSECT and DIFFERENCE are allowed at android.graphics.Canvas.checkValidClipOp(Canvas.java:779) at android.graphics.Canvas.clipPath(Canvas.java:1007) at co.ceryle.radiorealbutton.RoundedCornerLayout.dispatchDraw(RoundedCornerLayout.java:80) at android.view.View.buildDrawingCacheImpl(View.java:19472) at android.view.View.buildDrawingCache(View.java:19338) at android.view.View.draw(View.java:19927) at...

E/AndroidRuntime: FATAL EXCEPTION: main Process: com.app.example, PID: 25825 java.lang.IllegalArgumentException: Invalid Region.Op - only INTERSECT and DIFFERENCE are allowed **suggestion : you need to replace canvas.clipPath(path, Region.Op.REPLACE); with canvas.clipPath(path);** optional: try...

I tried using the example code at the bottom of the page to test it out. But I'm getting this error whenever I put the java code in. Otherwise the...

Hello and thank you very much for your cool library! Adding a drawable image is easy, and adding text is easy, but I cannot find a way to include them...

I can't configure targetSdkVersion 28 with this library. Could you uptdate? thank you.

Hi My application support multi localization and when the application is turned to right to left localization and try to select any button but not the first one then selector...

I need a ButtonGroup with three buttons in the first row and two in the second. How would I implement this? If I put a LinearLayout inside of the ButtonGroup,...

I want to add more radioButton when the app is running. Can I add radioButton programmatically?