<activity android:theme="@android:style/Theme.Dialog">
Hacer que un activity se vea como un Pop-up
sábado, 5 de mayo de 2012
Cada vez quedo mas sorprendido con las facilidades que tiene Android para programar, en este caso tengo un activity que deseo que se vea como un Dialog o pop-up, y lo unico que se debe hacer es agregarle un Theme al activity, esto se hace sobre el Mainfest.xml
Suscribirse a:
Enviar comentarios (Atom)
Lorem
Please note:
Delete this widget in your dashboard. This is just a widget example.
Ipsum
Please note:
Delete this widget in your dashboard. This is just a widget example.
Dolor
Please note:
Delete this widget in your dashboard. This is just a widget example.
3 comentarios:
hola Ale, como hago un boton para cerrar el popup?
Saludos Claudio, una posible solucion es modificar el layout por un RelativeLayout, y en la esquina superior derecha agregar un boton.
Button
android:id="@+id/closebtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:alignParentRight="true"
android:alignParentTop="true"
android:text="X"
android:textSize="18sp"
android:onClick="close_click"
Publicar un comentario