Tengo una Actividad simple y me gustaría tener la forma de un rectángulo redondeado. La actividad usa un Drawable translúcido. He visto ventanas emergentes de otros desarrolladores que son translúcidas (no un tema de diálogo) con esquinas redondeadas y estoy tratando de replicar eso. Cualquier ayuda sería apreciada.¿Cómo agregar esquinas redondeadas al fondo translúcido de actividad?
Aquí está el código que actualmente tengo que produce una ventana translúcida rectangular en el medio de la pantalla.
<style name="Theme.TranslucentDialog">
<item name="android:colorBackgroundCacheHint">@null</item>
<item name="android:windowIsTranslucent">true</item>
<!-- Note that we use the base animation style here (that is no
animations) because we really have no idea how this kind of
activity will be used. -->
<item name="android:windowBackground">@drawable/translucent_background</item>
<item name="android:windowNoTitle">true</item>
<item name="android:colorForeground">#fff</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
<item name="android:windowAnimationStyle">@android:style/Animation.Translucent</item>
</style>
<drawable name="translucent_background">#60000000</drawable>
¿puede compartir el archivo de imagen 9 ruta? – Derzu
no sé cómo adjuntar archivos PNG a mensajes :(Si Google buscando "Android 9 Patch" Estoy seguro de que puedes encontrar ejemplos. –