Query about Intent.ACTION_VIEW in android -
in intent.action_view intent? class or method , here action_view ? variable , type of it's ? please explain in details. thank you.
intent
in android abstract public class
. action_view
action on intent.
public static final string action_view
since: api level 1 activity action: display data user. common action performed on data -- generic action can use on piece of data reasonable thing occur. example, when used on contacts entry view entry; when used on mailto: uri bring compose window filled information supplied uri; when used tel: uri invoke dialer.
input: getdata() uri retrieve data.
output: nothing.
constant value: "android.intent.action.view"
you need read developers guide android. better understanding here.
Comments
Post a Comment