Gen Android app from Objective-C source code [closed] - android

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm developing an application in Objective-C. Is there a way to translate Objective-C based source code into an Android based source code without developing an Android app from scratch?

I don't think so, usually people look at things like monotouch and phone gap before development time.
jumping languages and platforms like that would be very very tricky.
This might help: https://code.google.com/p/objc2j/

Converting the code perfectly would be near impossible, but this does exist.
Keep in mind though that Android is very different from iOS, and porting an app like this will almost definitely not work out for you.
It would be much more worthwhile to write it from scratch on Android if you are serious about having a market on the platform.

Related

Programming Android App Online [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm often away from home but I'd really like to use this time to develop an android application. Is there a possibility to do this in the browser? I heard of Orion, but if I understood it right it is just for normal php websites and stuff.
So is there an android ide for the browser (online) ?
It would be very nice if you could help me :)
Thank you!
As you want to write an Android app, I guess you have a device running that operating system.
There is an Android app that allows you to develop native apps directly on the device, in a surprisingly powerful IDE. The app is called AIDE and is available on Google Play: https://play.google.com/store/apps/details?id=com.aide.ui&hl=de

Template engine for android [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am looking for a template engine for Andorid like Apache Velocity for Java.
I have already found Common Template Engine (https://code.google.com/p/commontemplate), but there is no user manual.
Do you know any other template engine? Have you any experiences with it?
Thank you very much
Chunk is perfect for Android projects.
It has a small footprint but plenty of built-in functionality. The {$tag} syntax is straightforward and easy to learn.
With Android in mind, the docs include an extension example that loads templates from a web server, so you can change the templates without having to release a new version of your app.
Full disclosure: Chunk is my own open-sourced template engine.

Where can I find some good examples of Android UI? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm quite new to the Android world, and, due to work needs, I'm trying to get in.
Whilst I'm not particularly afraid of the "thinking" code (i.e. Java), I'm a bit confused when developing the user interface.
Since I found that the simplest yet most effective way to learn something is copying from those who are the best, I'm wondering if there's some resource or something, out there, well done.
I mean: do you know some open source app, from which I can build my own knowledge about Android layouts? I wasn't able to do it on my own, even though I wondered quite a lot!
1) A good summary on everything UI design in Android can be found here.
2) The best place to get started is directly from the official website.
And here are relevant examples that are considered as good design in Android.

iOS-like storyboard tool for Android project? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Do we, Android developers, have any tool like iOS developers have which can help us make story board of all activities and links between them?
Those who have seen iOS story board tool will know what I am talking about. It would be really cool as we would be able to visualise the UI logic.
PS. check my storyboard tag
iOS storyboards allow you to define the flow of your app without (almost) writing a single line of code using the Interface Builder.
I don't think there's similar tool for Android. You'll need to create the layouts separately and then glue them calling startActivity (or its relatives).
I don't know that tool well, but I think that you are looking for something like fluidUI
There are dozens of similar tools and the best of them imho is still pen + paper.
Edit : Jimu looks like it will be perfect for that role.

Available Options for Mobile Development [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am interested in starting Mobile application Development.There are many suggestions on internet but,I wanted to have some starting guidelines from professional People out there like how they do it and what they use also
1.I want to develop Android Applications can you suggest me Simulator as well as good Starting Point(like links to tutorials)?
2.I have worked on c/c++/c# so is it going to be hard to learn Android?
I know this is a bit theoretical
question that may invoke long
discussions but i wanted to set
starting point not only for me but for
others who see this thread so that
they do not have to post question,Yet
get answer that how it is
professionally done
You need the android SDK (including emulator)
You should learn "android" as an operating system / middleware, but the applications are written in Java (using android SDK as well). The tutorials and documentation that are in the android developers' site are pretty good and will give you the basics, but you should learn Java in order to create applications on android.
Unlike other "Documentation sites", the android documentation is really really helpful and easy to understand for new-comers.
p.s. I am ignoring native code and C libraries in purpose.

Categories

Resources