now browsing by tag

 
 

Multitool update:

Multitool update:

Added Icon and image view

Added Progressdialog to Autoformat to show the user what gets done

https://drive.google.com/open?id=0B40xU-30MxN7em80T0hrRkxDT0U&authuser=0

If you are missing something, tell me 😉

If something doesn’t work as expected, tell me 😉

BTW: my versions in the wiki aren’t the same as the ones of the apks.

https://drive.google.com/open?id=0B40xU-30MxN7em80T0hrRkxDT0U&authuser=0
]]>

Just Blue

Just Blue

I tried to match my icons to my background.

Not really satisfied yet.

Anyway I thought I would share it.

The last image shows the icons on my phone which don’t work out well ATM.

]]>

This is a feature request and a tip to devs in one.

This is a feature request and a tip to devs in one.

First the tip: this is how to push any view (in this example a videoview) to LL

LL.bindClass(“android.R”);

LL.bindClass(“android.widget.VideoView”);

var root=LL.getContext().getWindow().getDecorView().findViewById(R.id.content);

var view=new VideoView(LL.getContext());

view.setVideoPath(“/sdcard/Video/video.mp4”);

root.addView(view);

view.start();

setTimeout(clear,0);

function clear()

{

if(LL.isPaused())root.removeView(view);

else setTimeout(clear,0);

}

Now the Request:

Pierre Hébert I would like to see a view item, which is just a item to display a java view. Of course it should be possible to create it through script. This would make things a lot easier and the above stuff wouldn’t be needed.

]]>

Scrollanimation script: Big new version release!

Scrollanimation script: Big new version release!

Two main improvements:

– Random mode: switch randomly between two or more animations

– New Setup UI

Other stuff:

– should restore old settings after disableing now

– Better performance (at least it looks better to me)

– whatever I forgot 😛

I think everything works as intended, but I’ve added so much stuff that I can’t be sure.

As always: Backup before use.

Download:

https://drive.google.com/file/d/0B40xU-30MxN7dzdqdDBCZ2ZvUXM/view?usp=sharing

]]>

Title

]]>

Pierre Hébert is there any possibility to pass an array as reference?

Pierre Hébert is there any possibility to pass an array as reference? I need to use  View.getLocationOnScreen, but it requires a reference which I’m not able to create…

( developer.android.com/reference/android/view/View.html#getLocationOnScreen(int[]) )

]]>

Video to my latest bug report.

Video to my latest bug report.

]]>

Sometimes a newly created item disappears again after running a script by positionchanged event immediately after…

Sometimes a newly created item disappears again after running a script by positionchanged event immediately after creating it.

]]>

Pierre Hébert is there any way to implement an java interface or subclass a java class?

Pierre Hébert is there any way to implement an java interface or subclass a java class? Having a hard time ATM because I need a serializable Pair, but the java library doesn’t support serialization for Pairs (http://developer.android.com/reference/android/util/Pair.html)

]]>

You don’t know the struggle of creating a custom Dialog until you try.

You don’t know the struggle of creating a custom Dialog until you try.

BTW: this is the current alpha state of the animations setup. 

The Version is going to contain random switching between several animations

]]>