Redirect android screen inside an app - android

I've developed different personal apps for android and now i'm interested in google cardboard project
So, would be possible to create an application for android to implement the same system of this project : http://www.vrdesktop.net ( windows only ). In few words mirroring the android screen inside another app that will split everything ..
actually i don't know if there are some usefull api/ways to accomplish the job.
EDIT1: i've prepared a draw to better show the idea: https://docs.google.com/drawings/d/15AYvjesIhZDTe5mfOmm5TzhRkyxmDA6L0jI9MzdKbB4/edit

After long researches i've found an open source project that is doing exactly what i was looking for:
https://github.com/frma71/sbs
P.S. Thank you for useless downvoting

Related

Embed react native app inside existing android app

I want to create a page made with native android with a small portion (say a horizontal scroll view) made from react-native inside the same android page like an android page with a react-native widget plugged in, such that the app is completely widgetized.
I know that it is possible to do so because I read about it in this article and some companies are using it.
Can anyone help me how to achieve this?
My question is same to this question, I found a few useful articles related to this matter for iOS but I want a solution for android.

Creating an APK using Cordova\phonegap - display it on lockscreen

i am new at building apps using phonegap and my last one is an app that shows information VIA WS ( basiclly it's a web app ) and been built on phonegap to APK file - and it works good.
i would like as an option to set the App ( wich will run on the Background ) on android LOCKScreen and dont know where to start...
thank you
The only way to put an app on the lock screen, that I know of, is to design it as widget. For example you can have a look at google documentation.
As far as I know at the moment there is no way to put an Android webview inside a widget and that is what you would essentially need to do. You should also see this SO question.
Hope this is a start for you ;-)

Android - HTML5 custom LAUNCHER

I want to create my custom android launcher but not with java code. I want to create it with HTML5 code. I've seen some launchers with HTML5 but not the documentation. Does anyone can give me some links or some tutorials/documentation to start? Thanks.
Does anyone can give me some links or some tutorials/documentation to start?
You could define much of the UI as HTML/CSS/JavaScript. Via PhoneGap, you could deploy this as an app. However, you will still need Java code -- or perhaps a PhoneGap plugin, if someone has written one -- to be able to access information about the installed apps, in order to populate your launcher.

Is there a UI class on Android like UINavigationController on cocoa touch?

I hope to make an Android version of my iPhone app.
Cocoa touch has UINavigationaController which can control the navigation of views(controller). It is special for the mobile device which has the small size screen.
Is there a UI class on Android like UINavigationController?
Yes, android does have an equivalent, which is part of the Fragment / FragmentManager system documented here Fragment back stack
The Android and iPhone SDKs use different paradigms for how they control views, etc. Its not really possible to take your iPhone app, rename some classes and turn it into an Android app.
I highly suggest you go read through the introductory Android documentation before going any further, so that you can understand the Android way of doing things. Start out with Application Fundamentals and work from there.
Not really. The closest thing would be an Activity with Buttons and Intents that you create. Read the document Mayra linked to.

Android Development

Is it possible for a program to mimic the Android Homepage? Can widgets, contacts, and canvases all interact at the appropriate FPS? Is it possible for an app to make calls and IMs? Or are the ISOs used to make the original too different from Java to mimic correctly?
To a large extent yes . For a start have a look at the home app sample provided by google . http://developer.android.com/resources/samples/Home/index.html .
Once you get your home app working perfectly you can add modules which practically do everything , but a better design strategy is to split the modules which do different work , so you calling module can be a different app.
I dont think there should be a fps issue if you have good code :) .

Categories

Resources