ChooseImage opens the photo gallery for user to select an image.
Example - Choose Image
function OnStart()
{
lay = app.CreateLayout( "linear", "VCenter,FillXY" );
btnChoose = app.CreateButton( "Choose Image", 0.5, 0.1 );
btnChoose.SetOnTouch( btnChoose_OnTouch );
lay.AddChild( btnChoose );
app.AddLayout( lay );
}
function btnChoose_OnTouch()
{
app.ChooseImage( "internal", OnChoose );
}
function OnChoose( path )
{
alert( "image path: " + path );
}
from native import app
def OnStart():
lay = app.CreateLayout( "linear", "VCenter,FillXY" )
btnChoose = app.CreateButton("Choose Image", 0.5, 0.1)
btnChoose.SetOnTouch(btnChoose_OnTouch)
lay.AddChild(btnChoose)
app.AddLayout(lay)
def btnChoose_OnTouch():
app.ChooseImage("internal", OnChoose)
def OnChoose(path):
app.Alert("image path: " + path)