You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simply add this to your XML: <com.flask.colorpicker.ColorPickerView android:id="@+id/static_color_picker" android:layout_width="match_parent" android:layout_height="700dp" android:layout_marginLeft="20dp" app:alphaSlider="true" app:lightnessSlider="true" app:wheelType="CIRCLE" />
Then in your Java activity, colorPicker = findViewById(R.id.static_color_picker);
Then you can add a Listener to it: colorPicker.addOnColorSelectedListener(colorListener());
And do whatever you want in the listener.
How can I use this code without a dialog box, just in activity
The text was updated successfully, but these errors were encountered: