Jay M
now browsing by tag
I dunno how to word this basically im using LL on my TV and i managed to change the icons on a few apps using LLs…
Here is exactly were it crashes
Menu/settings/desktop/icon pack/select and apply icon pack/crash
edit: I cant select any lightning actions either just get a toast saying “action not available” I can probably get round that by using a script though 🙂
]]>Lightning ⚡ on Android TV 😃 had to sideload it because it wasnt showing up in the extremely limited TV version of…
Lightning ⚡ on Android TV 😃 had to sideload it because it wasnt showing up in the extremely limited TV version of the Google playstore. Only thing is theres no menu button and no way to trigger it so I cant do much customization, beats using the default sony launcher though.
]]>Just outta curiosity who wrote this script and why was it removed? Im sure it was on the wiki as an example.
//Flags Name: CV_music
LL.bindClass(“android.media.AudioManager”);
LL.bindClass(“android.widget.SeekBar”);
LL.bindClass(“android.widget.FrameLayout”);
LL.bindClass(“android.view.Gravity”);
var context = LL.getContext();
var mgr = context.getSystemService(Context.AUDIO_SERVICE);
var stream = AudioManager.STREAM_MUSIC;
// see http://developer.android.com/reference/android/media/AudioManager.html for other streams
var seekBar = new SeekBar(context);
seekBar.setMax(mgr.getStreamMaxVolume(stream));
seekBar.setProgress(mgr.getStreamVolume(stream));
seekBar.setOnSeekBarChangeListener(
{ onProgressChanged: function(seekBar, progress, fromUser)
{ if(fromUser)
{ mgr.setStreamVolume(stream, progress, AudioManager.FLAG_PLAY_SOUND);
} } });
// let the bar extend horizontally but not vertically, center it in the view
var lp = new FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT, FrameLayout.LayoutParams.WRAP_CONTENT);
lp.gravity = Gravity.CENTER;
seekBar.setLayoutParams(lp);
// prevent the desktop to scroll when the thumb position is moved
item.setHorizontalGrab(true);
return seekBar;
]]>Im sure I saw a custom view script showing how to change volume with a Seekbar was it removed I cant seem to find it…
Probably a daft question but im looking at getting a Android TV any ideas if I could use LL on it?
Could you put app search in the overflow, will be usefull when the actionbar is hidden.
Can anyone tell me how to use the textual page indicator if I long press the setting it says not found.
Id love to see one of these alphabetty spaghetti 🍝 strips implemented cheers.
Id love to see one of these alphabetty spaghetti 🍝 strips implemented cheers.
]]>Nothing to do with LL but maybe someone here can help.
On my sd card i have 1 folder with about 20 folders in it and in each folder there’s 1 file anyone know a quick way to move all of those files to 1 folder?
]]>
D5 Creation