vlad1slav
vlad1slav

Reputation: 68

Android camera button

I am writing a simple android camera application (SDK version 7). Can I handle camera button like in native camera app, i.e. soft click - focus, and hard click - capture photo ?

Upvotes: 0

Views: 888

Answers (1)

cudom
cudom

Reputation: 71

Be aware that many android devices do not have physical camera button. It is safer bet to allow the way for the users to use touch screen for both focusing and taking photo.

Anyway, since you mention native camera app, I assume you mean the official camera app. In that case, you can find the source code at https://android.googlesource.com/platform/packages/apps/Camera.git

Upvotes: 3

Related Questions