こんにちは「stackoverflow」私は、透過的なアクティビティのような他のアクティビティの上に残る必要があるAndroidアプリケーションを開発しようとしています。また、他のアクティビティに触れて操作できる必要がありますが、アクティビティはすべての上にとどまる必要がありますユーザーが明示的に私たちの活動を殺すまで、他の活動は永遠に続きます。
次のコードを使用して、アクティビティを透明にしました
「res/layout/styles.xml」
<style name="Theme.Transparent" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
そして私の中で
私が使った「マニフェスト」
<activity
android:name="com.example.transperentdroid.MainActivity"
android:theme="@style/Theme.Transparent" >
........
</activity>
このなぞなぞを解くのを手伝ってください。前もって感謝します。