Panels?
Intercepting the softkeys?
SetActivityAttribute(main, android:theme, "@android:style/Theme.Translucent.NoTitleBar")
Activity.Color = Colors.Transparent
To<activity android:windowSoftInputMode="stateHidden" android:launchMode="singleTop" android:name=".main" android:label="abc" android:screenOrientation="unspecified">
<activity android:windowSoftInputMode="stateHidden" android:launchMode="singleTop" android:name=".main" android:label="abc" android:screenOrientation="unspecified" android:theme="@android:style/Theme.Translucent.NoTitleBar">
'Activity module Trans
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.Color = Colors.Transparent
End Sub
Sub Activity_Resume
Dim ct1 As CustomToast
ct1.Initialize
ct1.Show("Hello",3000,Gravity.TOP,0,Main.pScreenHeight * 0.50)
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
@Margret
I wrote a second transparent test app to make sure I could do it with a clean app, but it won't go transparent! I'm attaching it as a .zip file, would you mind taking a quick look at it and see if it goes transparent on your device?
Thanks...