Customize size of a button widget in android [closed] - java

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
So i have this idea to create an activity that have only buttons which split the screen as presented in the picture:
I was thinking about creating some functions for each button. those functions will be dependent on the y and x axis of the screen.
Can you guys give me a direction on how to do this in a manner of using the Button and imageButton widgets in my activity.java file?

Related

How do I create an custom "Drop-Up"-Menu in AndroidStudio [Java] [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I want to crate an dropdown menu which opens form down to top when I click an icon on an circle fixed in the left-bottom corner.
Which Elements should I combine (no code answers necessary)
Example draft
Creating a Spinner near the bottom of an activity should force it to open upwards, given there isn't enough space to list downwards. A way of forcing using this would be to add a margin to the top of your spinner to force it down so it will list upwards.
Source

Floating image in an activity - android - [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I would like to create a picture/button that is displayed over the content of an activity and I can move it anywhere on the screen. Example of functionality: If I move it close to the left side of the screen I would like the image to move to the edge when the user drops the object.
You can either use a draggable view library like DraggableView or you can implement your own onTouch handling to handle touch events for dragging image view. Here's an article for reference.

How to create this gesture effect animation? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
How I can create this type of sweep animation using gesture or other method in android studing using java.
Effect: https://ibb.co/hKJjen
So for the swiping cards you'll have to use this library
https://github.com/flschweiger/SwipeStack
When user will touches/swipes the cards there will be a white dot which acts as a pointer just like how you'r attached example shows. Click the below link and you'll get the right code implementation for it!
http://android-er.blogspot.in/2015/05/android-custom-touch-view-with-callback.html

Rating Bar widget Java [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
Do you a widget or a way to have a rating bar in java like android ? I'm using gtk3. I can create a radiobutton group which is quite similar but not the same visualy.
You can change the image of radiobutton with drawables.
Possible solution

Java swing - button's note when the mouse touches it [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am trying to add a kind of label when the mouse touches a button, I used Jlabel but i failed to create it.
Can you help me?
Use setToolTipText with Button.
button.setToolTipText("Click me");
Look at this tutorial.

Categories

Resources