local on= "Mobile data,On" 

local off= "Mobile data,Off" 


if service.execute('快速设置') then
service.postExecute(500, '', node, function()
if this.findAccessibilityNodeInfo(off) then
this.click({
{off .. ">5$0", 
'%返回<2'}
})
this.postSpeak(100, ' data activated  ')
elseif this.findAccessibilityNodeInfo(on) then
this.click({
{on .. ">5$0", 
'%返回<2'}
})
this.postSpeak(100, ' data deactivated ')
end
end)
return true
end