Customization in video view [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 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

Related

Create a notebook application in 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 7 years ago.
Improve this question
First of all this is just a fun project. I have a idea to make a notebook software using java.
i know there are many softwares,but this is for my knowledge. I need do following tasks in my application,
Expand typing area when neccessary (like in Onenote)
Draw shapes and edit shapes
Add code,syntax inside a note and it can be move (can i add this part to a jPanel?)
Add comments to a line in a bubble
Add some simple notes like sticky notes in a note
Also i need to add a mini map of a note (How to get the copy of the working note?)
(Solved) 07. Also I decided to use javaFX to create the interface, Is JavaFX good for my project?
Can i do all of these in java?
If can please give me some guide. Thanks in advance.
Yeah.. It is definitely possible to write a code for your requirement in javafx. Since you are a beginner start with this documentations.
You can download Javafx documentation in the following link.
http://www.oracle.com/technetwork/java/javase/documentation/java-se-7-doc-download-435117.html
Also I would recommend you to download this JavaFX SDK, which includes all the documentations.
http://javafx.com/downloads/

Upload video in Android with Volley [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 7 years ago.
Improve this question
I'm trying to upload video with Volley using a POST request but i don't know how create the stream of byte of a .mp4 video saved on my Android phone. Can someone help me?
Thank you.
Your approach is not the good one, I'd say. It could work but there are much simpler ways: why don't use a File and upload it to your server as a multipart/form request for instance: this answer is really good in this way.
It could be that it's not gonna work with big files and you won't be able to add a progress bar with this option.
I'm a big fan of Volley but it is pretty obvious that it hasn't been design for heavy file transfers and is focused on consuming a simple REST/JSON API. Therefore, I would recommend to switch library to something designed for your needs like this one (Android Async). It is, to me, much better FOR THAT PURPOSE (and if you need a webserver too!)
Hope it helps

How to create a image button menu programmatically? [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 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/

make bubble that move around the screen like facebook messanger [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 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.

Develop a music player android app with swipe feature in two weeks [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 8 years ago.
Improve this question
I have to develop a music player application, and in this app different activities has to be swiped through (same interface as google play music where you swipe through different parts).
I want to have just one page (main page), with different tabs where I can swipe through.
Since I'm also new to android development (familiar with java though). I have difficulties understanding are these tabs different activities, do I need to use fragments etc. I'm so lost on how to start building the actual app (start with interface, activities etc.).
I would be grateful if someone could give me some advice and introduce me to some good tutorials.
Thanks.
Here is a link from google developers on how to implement sliding tabs like google play.
http://www.youtube.com/watch?v=tRg_eDfQ8fk
And this is an excellent tutorial to build a music player.
http://www.androidhive.info/2012/03/android-building-audio-player-tutorial/
Integrate both and you will have your app.

Categories

Resources