tags:

views:

57

answers:

3

Hi,

I am new to android.I need to create a Transparent Panel . Can any one help me with same code..

Thanks in advance....

A: 
setAlpha(128);

Your question doesn't make sense, you'll need to be more specific about what you want. Also, you need to go accept some of your previous answers, you have a 0% acceptance rate.

kcoppock
A: 

example:

                <LinearLayout
                    android:id=...
                    android:layout_height=....
                    android:layout_width=....
                    android:background="@android:color/transparent" />
Danail
A: 

A TransparentPanel is not a class native to Android itself. The only context where I have encountered it is in a tutorial available at :

link text

I hope this may be of some use to you. You can download the source for the tutorial from that page.

NickT