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…

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 icon picker, but when selecting the option to set an icon pack for the desktop or the drawer I get a crash and i think its because theres probably no chooser application for me to pick my icon pack from, if that makes sense. Any ideas how I can get round this?

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.

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…

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 anywhere.

]]>

Probably a daft question but im looking at getting a Android TV any ideas if I could use LL on 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.

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.

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.

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?

]]>

In the app drawer we can uninstall an item by long pressing an app icon and choosing uninstall, could this also work…

In the app drawer we can uninstall an item by long pressing an app icon and choosing uninstall, could this also work for the bin icon? I just think it would be quicker/easier and it makes sense to me because we bin stuff we don’t want and while I no that icon doesn’t do anything I can’t stop trying to uninstall apps that way.

]]>