How can you implement android apps without android? [duplicate] - java

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Which programming languages can I use on Android Dalvik?
Which programming languages can be used to develop in Android?
Are there any alternatives for building apps for Android devices without programming in android? Maybe Python or something like that?

Phonegap is a good alternative that would allow you to use html, css and javascript to develop applications for any mobile platform.

Yes. See Scripting Layer for Android.

Related

How to run an android application APK on IOS? [duplicate]

This question already has answers here:
Is it possible to run .APK/Android apps on iPad/iPhone devices?
(4 answers)
Closed 3 years ago.
I am developing android application in android studio. I want that my application can run on IOS as well. what should i do ?
I searched a lot on internet but can't got right or reliable answer.
A native Android app can’t run on iOS. However their are many ways to build cross platform apps - of course they all have caveats and depending on the complexity of your app a native iOS app may be better.
Cross platform apps.
Xamarin- https://visualstudio.microsoft.com/xamarin/
React Native - https://facebook.github.io/react-native/
Flutter - https://flutter.dev/
To name a few.

Java. How to make a bot [duplicate]

This question already has answers here:
How can a program control another program?
(11 answers)
Closed 8 years ago.
I wonder is possible to make a bot writen in JAVA, which will open some program(program is under windows), click on the button in this program and type some data, check status of this program(login or logout, this is client for online game).
Which JAVA tools I need ? I think that java robot lib is not enough for this.
Thanks in advance.
You cannot do this using JAVA.
JAVA is a language which is loosely coupled with operating systems, so it can only receive mouse/key messages from underlying OS. Among all the tasks you mentioned , it can only start the program by using Runtime.execute.
If you want to implement a software like this ,you should use Visual Studio and use Microsoft technologies.

Prohibit the mobile Internet in the background "Android" [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
How to disable Mobile Data on Android
I'm sorry for my English, I use a translator.
In the android menu, you can turn off mobile data in the background. How can I do this using code?
You as a programmer are responsible for the behaviour of your program, so if you don't want that your program uses data when in the background:
Test for it.
When in background, don't make call's.

How to use SQLite with GWT? [duplicate]

This question already has an answer here:
Closed 11 years ago.
Possible Duplicate:
SQLite DB for GWT?
I know how to use SQLite with Android applications but I can't seem to figure out how to get started using SQLite with GWT for use in building a Packaged App for Chrome. What do I need? I've been searching for days and found nothing, so I think I'm off track. Any guidance would be greatly appreciated.
I'd check out gwt-jdbc-html5, since HTML5 now provides built-in SQLite support. There are plenty of other, heavier weight wrappers, but this is the best and easiest I've seen around.

Java equivalent to WPF [duplicate]

This question already has answers here:
What is Java's answer to WPF? [closed]
(3 answers)
Closed 4 years ago.
Is there an Java equivalent to the WPF platform?
No, but there is JavaFX which can be compared to Flash/Flex & SilverLight
The most likely answer is Soyatec's eFace. It supports several key features of WPF. It uses XAML and databinding, so you can apply MVVM and test your ViewModel. Also it supports templating.
Also, this is used in Eclipse e4.
JavaFX is SUN's trial to compete with WPF.
It can be used in both Applets and Desktop applications
You can see this comparison
Please take a look at Qt Jambi. It uses the Qt framework:
http://qt-jambi.org/

Categories

Resources