Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
im creating an android app allows user to find a place (Restaurant for example) , tha app has a home page displayed and images and videos slider.
Im looking for an android library that offers images and videos slider.
Any help is appreciated !!
You can try PosterSlider.
It's useful for both image and video slider. Give it a try.
You can use MediaSliderView
GoodLuck.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 months ago.
Improve this question
I want the user to pick an image from gallery and crop it [like this], similar to Instagram profile picture (https://i.stack.imgur.com/nXvqg.jpg) , is there a package or something to help?
All the packages I found don't have cropping in a circular shape , I'm expecting maybe that there is a package that I didn't find or another way to do that
You can use this, and change the shape to app:cropme_overlay_shape="circle"
https://github.com/TakuSemba/CropMe
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I'm using a TWA as almost my whole app. The only problem, I want to use the native
in app purchase system that google is offering.
Everywhere I look there is a sentence that you can use native stuff like push notifications, in app purchase etc.
What I want: A tabbed app (first tab is the pwa, second tab a native screen). But I can't find any information on this.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Shai Almog
You have made facebook clone and whatsapp clone.So you can easily help me.Can you please give me the source code for that or i have made a similar app in android studio and can I convert it to Codename one
The full source code for these applications is available as part of this course https://codenameone.teachable.com/p/build-real-world-full-stack-mobile-apps-in-java
Pulling out a snippet for something like this is nearly impossible as the apps are large and intertwined. There are samples for file upload in the javadocs and a sample image gallery in the kitchen sink demo.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I'm working on a project in which my activity fetches image from a account to my layout file Which api/sdk is easy and useful in fetching images from account/page in Android platform?
Thank you :)
I'm not sure what you mean by account but Picasso is a great library for downloading and displaying images: http://square.github.io/picasso/
Glide is really nice to use as well: https://github.com/bumptech/glide
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I take a lot of screenshots of websites (thousands/month).
Each screenshot captured should include address bar of the browser (top), taskbar of the desktop (bottom) and webpage (in between) plus i need each saved image file to be named after the website's url.
Can anyone suggest me any software ? I tried several s/w, none supported this .
Can I do this using java or any other language ?
Yes, of course you can do it using Java. Have a look at the Robot Class therefore.
The method createScreenCapture should exactly do what you are looking for.