Is multitouch is supported in Android using cocos-2d?+Sprite Image Flickers problem

Hi all,

When moving one Sprite over another, Top sprite’s image is flickered .
Two sprites are in one layer.when I used the images with size 128*128 and 256*256
did not make any difference, got same result :frowning: .

Multi-touch Seems not working in android.

Following code used to enable Touch
CCTouchDispatcher.sharedDispatcher().addDelegate(this, 5);
—-
public boolean ccTouchesBegan(MotionEvent event)
{
}

Thanks for your time

Regards,
kariyachan

Multi-touch for android is working, you can run the tests, and play with TouchTest, try to control the white blocks with multi-touch.
But it has a critical bug #422, we will fix it in the next version.

Thanks for the report of overlapped sprites flickering, I just run SpriteTest of tests on my HuaWei u8800 cellphone, android 2.2 device, and it renders well with any flicker.
Can you tell me your environment? android device? version? cocos2d-x version? An unit test code to reproduce this bug will be appreciated!

Hi,
Thanks for the reply.

I really do appreciate your commitment.

I got flickering effect on my samsung galaxy 3 gt15801.
At the same time it work like a charm in emulator I don’t know what is it’s problem.

I attached both screen shot and source file with this

Hope it will find it usefull

Thanks again for all your efforts.

Regards,
Kariyachan

Kari Yachan wrote:

Hi,
Thanks for the reply.
>
I really do appreciate your commitment.
>
I got flickering effect on my samsung galaxy 3 gt15801.
At the same time it work like a charm in emulator I don’t know what is it’s problem.
>
I attached both screen shot and source file with this
>
Hope it will find it usefull
>
Thanks again for all your efforts.
>
Regards,
Kariyachan

I believe version I used is 0.8.0 (2011-03-15) one thing Iam sure I downloaded it from google code exactly 15 days before

Man, I think you sent the message to error place. The engine here is cocos2d-x, which is implemented with c++.

Kari Yachan wrote:

Kari Yachan wrote:
> Hi,
> Thanks for the reply.
>
> I really do appreciate your commitment.
>
> I got flickering effect on my samsung galaxy 3 gt15801.
> At the same time it work like a charm in emulator I don’t know what is it’s problem.
>
> I attached both screen shot and source file with this
>
> Hope it will find it usefull
>
> Thanks again for all your efforts.
>
> Regards,
> Kariyachan
>
I believe version I used is 0.8.0 (2011-03-15) one thing Iam sure I downloaded it from google code exactly 15 days before

In your GameActivity.java, there are some contents like:

import org.cocos2d.actions.CCTimer;
import org.cocos2d.actions.base.CCAction;
import org.cocos2d.actions.base.CCRepeatForever;
import org.cocos2d.actions.base.CCSpeed;

cocos2d-x hasn’t implement these content.