Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my app I have a background and there is an object say a table placed on the background. Now I want to color the table only. Is there any way to do this in AndEngine? If so please provide a sample code. What should be the mechanism?

share|improve this question

2 Answers

up vote 0 down vote accepted

You can set color to any entity on your scene. Just use entity.setColor(). It will multiply your color and object native color.

If you need just new color, initially make your object white.

Hope this help.

share|improve this answer

You can do it in xml:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/myTable"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@android:color/darker_gray" >
    <TableRow />
    <TableRow />
</TableLayout>

Or you can do it programmatically:

 TableLayout table = (TableLayout)findViewById(R.id.myTable);
 table.setBackgroundColor(Color.DKGRAY);
share|improve this answer
I think I was unable to explain my question. I want to color the object in AndEngine Scene not in XML. Secondly I dont want to change the background color I want to color the object. Like Kids do in their Drawing Books. – Jawad Amjad Jul 2 '12 at 8:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.