Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
In which layer does Dalvik go?
It is not mentioned anywhere in documentation.
direct link to diagram
I suppose you could say it's "under" the Applications and Framework layer and the stuff in the System Server box.
Dalvik isn't a service or a HAL, so it doesn't quite fit in that diagram.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I want zoom in display of device itself without rooting.
for example..
like zoom in home screen.
Is this way exist?
This question is inappropriate as it's not a programming question. However what you want is magnification gestures. This was included into Android 4.1 but may not be included by all manufacturers.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
we can do many things by android sensor. However, can I judge my status, such as moving, motionless.
The simplest way is to use Activity Recognition API http://developer.android.com/training/location/activity-recognition.html .
Or you could read raw data from sensors to recognize patterns. But eventually you'll come the same functionality.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I need to use this view in image. But I don't know, how can I do it.
Unfortunately, I can't add image to my topic, because I'm a beginner on this site, but this image on link: http://i.stack.imgur.com/CIZ0u.jpg
Thanks.
Here is Android Library Kankan Wheel.
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 9 years ago.
Improve this question
I want to know that, Is there any way to build a specific framework for applications having same functionality?
Or I have to replace the code always with data?
Yes, you can create a Library Project.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am looking for an example of DataColumnsWithJoins usage? Do you know any?
If you notice, this is only an interface, not a class. An example class that uses it is ContactsContract.CommonDataKinds.Email. Here is an example of using this class.