Page 11 of 16

Re: love-android: discussion

Posted: Thu Nov 17, 2011 10:03 pm
by josefnpat
I finally got a chance to put this on my phone, and it's pretty fantastic guys!

keep up the good work. Once this is stable, I can see a lot of projects using this!

Re: love-android

Posted: Thu Nov 17, 2011 11:10 pm
by miko
ghoulsblade wrote: should display 3 lines with different font,
1) default font in white (works correctly on my milestone)
2) non-power-of-2 image font in black (316x6) (i only get white boxes on my milestone)
3) power-of-2 (512x8) image font in red (works correctly on my milestone)
4) non-power-of-2 image used for the font (316x6) (i only get a big white box on my milestone)
Thanks, this is big step forward! 1) and 3) work for me, yet in landscape mode they look almost unreadable. I think the characters should not scale when the orientation (and screen resolution) changes.

Re: love-android: discussion

Posted: Thu Nov 17, 2011 11:12 pm
by ghoulsblade
try adding
t.android_native_screen = true
to conf.lua to keep native resolution =)

Re: love-android: discussion

Posted: Fri Nov 18, 2011 12:54 am
by Fantom7
when it will goes to oficial release in site?
I stoped for a wile but i am backing to love developement now

Re: love-android: discussion

Posted: Fri Nov 18, 2011 1:19 am
by sincain
Wow, this is really cool, I will keep watching your work.

Is there any method that I can just install an love-android app
just like others ? I mean just install an apk file, and one
can run it.

Re: love-android: discussion

Posted: Fri Nov 18, 2011 1:43 am
by ghoulsblade
the download link for the apk is this : http://ghoulsblade.schattenkind.net/lov ... ndroid.apk
just download in browser, drag down the notifications bar and click it, it'll ask if you want to install it then.
it's still early work in progress, but can play a few .love files alread :
e.g. clouds demo, or in your face city trains, maybe others, didn't test too many.
you need to have the .love files in your downloads folder, or in sdcard/love/ for it to list them

Re: love-android: discussion

Posted: Fri Nov 18, 2011 3:11 am
by jdriselvato
Wow thats awesome that your doing this. I am also interested in checking out the source and how your porting it. I'll check out the repo soon. :ultrahappy:

Re: love-android: discussion

Posted: Fri Nov 18, 2011 3:38 am
by Jasoco
Is there any way to get rid of the status bar and the title bar so it can use the full screen area? I tried the new t.android_native_screen and the fullscreen options. Is it just not implemented yet?

Also, does it not support Circle, Rectangle and Line yet? I can't get a circle to draw at all. But images work fine.

Re: love-android: discussion

Posted: Fri Nov 18, 2011 6:53 am
by hagish
Lines and circles are not implemented yet and currently there is no option for real fullscreen without the status bar. But that is just a matter of time ;)

Re: love-android: discussion

Posted: Fri Nov 18, 2011 3:42 pm
by Taehl
I know that to hide the title and status bars, an Activity can have:

Code: Select all

public void onCreate(Bundle savedInstanceState) {
	this.requestWindowFeature(Window.FEATURE_NO_TITLE);
	this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
}
Not sure if that applies here, but I hope it helps.