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
I want to make a menu like this:
The images and text will be loaded from internet. Which approach do you suggest me to use? Should i use a grid layout? Or an adapter? Do you know what this kind of layout is called? And do you have any examples of this?
Thanks in advance.
You could use a ListView with a custom Adapter to provide the functionality, and for the image-downloading, i would suggest using the Picasso library. It handles downloading images async and also handles errors very well, i've never had issues with it and its extremely simple.
Link to Picasso: square.github.io/picasso/
Related
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 2 years ago.
Improve this question
i´ve searched a lot and didn´t find any solution:
Is there any possibility to open a Dialog-window while the Fragment-window is open?
Maybe communicate through the MainActivity?
(i´m using kotlin)
Thank you very much!!
Recently faced a similar problem.
Here you should pay attention to how you are going to move into the dialog fragment.
Based on my personal experience, I can offer an exit via Navigation controller.
Here is a very good example
https://medium.com/androiddevelopers/mad-skills-navigation-wrap-up-4e5733ecb107
Good luck!
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 1 year ago.
Improve this question
I got a question here regarding in Android Studio (using Java). Is there any way possible that without using the VideoView widget, you can play video?
And if not then how do I change the VideoView visually.
I meant by adding different kind of buttons to it and adding different functionality to it. Like seeking, 10 sec forward or backward or something like that(I know that we can do it using the inbuilt one, but why not try it in the custom way) and all other kind of functionality we use when we play video on VLC kind of player.
So, if there anything like that, I would be grateful to hear about that!.
Thanks in advance!
You can try with ExoPlayer. It's easy and more customizable.
Use Media player with custom controls please go through attached link once Media Player with custom controls
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
I want to develop app in that i want to create a bubble like facebook messenger, i can move bubble around the screen on any view, also can delete the bubble same as facebook messanger does , it same looks like facebook messenger app is working
i have no idea how to start developing that, is there any other example then please suggest me
it should look like below picture (it is taken from https://play.google.com/store/apps/details?id=com.facebook.orca&hl=en)
Want to improve this post? Provide detailed answers to this question, including citations and an explanation of why your answer is correct. Answers without enough detail may be edited or deleted.
Its call Global HeadView.
Try this out
https://github.com/PomepuyN/AndroidDemo/tree/master/GlobalViewHead
This has very good explanation how Views can be added using Service and Window Manager.
Also Broadcast Receiver is implemented which will trigger when the boot is completed and that will start the service.
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 9 years ago.
Improve this question
I'm making a program for my mother to repay here for all she did with me. I am trying to make a program similar to Cash Register Express. How would I make a GUI similar to it and linking to other pages? And if it doesn't work with Java, any other programming languages?
Start by taking a look at Creating a GUI With JFC/Swing and you will want to pay close attention to How to Use CardLayout
CardLayout used in Swings will be a good option. All the best for your work !
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 5 years ago.
Improve this question
I am new in embedded world. May be I am wrong. But I want a relevant solution.
I just want to embed java environment into a MCU for ease to develop application. The MCU vendor have provide the C library for lcd, sensor, spi, buttons, UART, DIO etc etc. Can I embed java into this ?? I mean, I want to use java on the MCU, uppon those device drivers.
Can I use or make something like this??
I have seen the simple Real-Time-Java it's very tiny.
Thank you.
Take a look at NanoVM and Bajos.