Android Tablet Application Development Basics [closed] - sdk

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'am developing my first android Tablet app. I want to develop the same app for smartphones also. What should be the minimum sdk version to develop an app for both? And how many layout folders i should have to support the app portrait & landscape modes on both the devices?

What should be the minimum sdk version to develop an app for both?
Whatever you like. The minimum SDK version does not affect whether or not your app can run on a tablet. At this point, I recommend focusing on Android 2.1+, which would mean using 7 as your minSdkVersion, but that is up to you.
And how many layout folders i should have to support the app portrait & landscape modes on both the devices?
As many as you need, and no more than that. In other words, it is impossible to answer this in the abstract.
Start by having everything in res/layout/. As you determine that you need other resource sets to make things work better (e.g., res/layout-large-land/ for a tablet landscape activity layout), add them.

Related

UIGlassButton in iOS 6/on iPhone 5 not working [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am trying to use the UIGlassButton on my iPhone 5 running iOS 6.1 final. There are no errors, just that the UIGlassButton doesn't show up. I also tried this and many other yet finished GlassButton proects on GitHub etc., but none of them works.
What am I doing wrong?
This is exactly the reason why you shouldn't use private API's. Because classes like these are for internal use only, they could change or even be removed in between OS updates.
Imagine you would have used this in an application already in the store, it would either crash or just not show the buttons. A good way to treat your users.
UIGlassButton is a private class and should not be used. To create a similar effect build the button yourself or use images.

how to integrate Alfresco to my ios app? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
In my ios app there are some information which I have to pull from some Content Management System(like Alfresco). Could You please suggest me, how can I integrate Alfresco to my ios app?
There are two options available to you
One of them is to take the source code for the Alfresco Mobile App for iOS which is open source, and start from there. Customise the Alfresco app to do all the additional things you need, with the Alfresco code as your starting point. This will work best if you basically want what the Alfresco App provides, with a few small changes.
The other is to use the CMIS library for iOS which the Alfresco mobile app uses, include that in your existing application, and interact with Alfresco via CMIS. It's also open source. See cmis.alfresco.com if you're new to CMIS and want to learn more.
You'll also likely want to join the Alfresco Mobile Forum, which'll be the best place to get help with either the open source mobile app, or the iOS CMIS client.

How do I create a 'rate this app' button in an Air app for iOS [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I often see a 'rate this app'-button in ios apps and want to recreate it in my own apps for ios. As i am working in Adobe AIR i can't use any of the native libraries linked in the answer below.
My question is - how do i make a 'rate this app'-button in an iOS app created with Adobe AIR?
I can't find any Air Native Extensions (ANE) covering this specific case so i am thinking maybe there is a simpler way - maybe i just need a special link from the app to the app-store?
There is a really nice project called iRate by Nick Lockwood, just mind project's license.

How to add photo effect on iOS [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
How do I add effect (e.g. lomo) to a photo on iOS?
To make it simple, I wanna try to make an iPhone app which is similar to those photography apps, and I want a tutorial to start with.
As coreImage framework is not present in iphone (atleast upto iOS 4.0), you will have to do image filtering by hand..You have to iterate through each pixel in an image and work on it..This thread discussed about various image filtering effects in iphone and is very useful..These guys say they are successful in porting imageMagick to iOS but I never tried that..Also I asked a question about implementing polaroid filter in iOS, though it didnt get a good answer, the question itself might be helpful..

How to develop a IPad Application using Java in Windows [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
How to develop a IPad Application using Java in Windows, am a Java developer with Eclipse IDE on Windows OS,
i would like to know is there any way to develop a application for Ipad with my above mentioned resources....?
thank you...
As someone just said when they were posting the link to this question, you are being quite optimistic with these requirements.
Quite simply, it isn't going to happen, not unless you stick to jail broken devices and some kind soul has ported a JVM to IOS, which I haven't heard of.
You have no way of deploying to a non-jailbroken device, as Apple only provide provisioning certificates to XCode, and Xcode handles deployment.
You have no way of running Java without either a JVM (not going to happen on a non-jailbroken device) or a conversion tool like MonoTouch for .Net, again I haven't heard of one.
In short, no chance.
No, you need Xcode on a Mac. This is unlikely to change.
Also requires Objective C knowledge or something that uses it (like Phonegap)
Xcode is like Eclipse (but so so much better and prettier), Objective-C is like Java, a powerful OO c-style language that you do everything in.

Resources