androidとiphone用のSenchaTouchを使用してPhoneGapアプリケーションを実装しました。
このアプリで
私のビュー(ページ)の1つに、デフォルトの画像と画像のすぐ下にあるボタンがあります。
button is to access camera feature action
と_default image is is replaced by the captured image.
how to access camera by clicking a button. and how to replace the default image with the captured image
閲覧することにより、私は次のリンクを見つけました、
http://docs.sencha.com/touch/2-0/#!/api/Ext.device.Camera
しかし、このコードをボタンクリックアクションに接続する方法と、画像ソースを置き換える方法がわかりませんでした
誰か助けてくれませんか
私の見解では私のコード:
{
xtype: 'panel',
title: 'Camera Page',
layout: {
type: 'vbox',
align: 'center',
pack: 'center',
},
items: [
//Default image it should be replace with the new one
{
xtype: 'image',
src: 'images/Gallery.png',
height: 200,
left: 200,
top: 0,
width: 300
},
//Button to move to the camera feature
{
xtype: 'button',
id: 'CameraClick',
ui: 'action',
text: 'Camera',
top: 222,
left: 200,
padding: 20,
},
]
},