now browsing by tag
Hi..
I’ve been trying to bindClass and use ‘UsageStatsManager’ in LL script without luck..
I’m trying to get a recent apps list like this…
http://stackoverflow.com/questions/24590533/how-to-get-recent-tasks-on-android-l/26885469#26885469
Is this possible? Or I’m thinking it wont work because of the permissions?
Thanks!
]]>made a ‘Custom view’ as a calendar…. Cool :)
made a ‘Custom view’ as a calendar…. Cool 🙂
LL.bindClass(“android.widget.FrameLayout”);
LL.bindClass(“android.view.Gravity”);
LL.bindClass(“android.widget.CalendarView”);
var context = LL.getContext();
var calendarView = new CalendarView(context);
var lp = new FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT, FrameLayout.LayoutParams.MATCH_PARENT);
lp.gravity = Gravity.TOP;
calendarView.setLayoutParams(lp);
item.setVerticalGrab(true);
return calendarView;
]]>Is it possible to change a Panels Transparency in a script?
from 0 to 255…
]]>