Reputation: 771
Android Studio allows to design the GUI with widgets like Radiobutton, small button, checkbox etc, which has its own properties.
I am very new to android and I want to add new widgets in android studio by extending current widgets/views (for example, adding new settings for Seekbar) (if possible). Any idea, how can I implement it?
I know that I can create custom views by xml for the app. But I want to add that in android studio.
Upvotes: 3
Views: 4764
Reputation: 3784
On the "View Editor" screen, on the "Palette" tab, go to "Custom" section and select "CustomView". Then, select your Custom View, and drag and drop it to your user interface.
Upvotes: 1