Pruebe este código de muestra. Se ajusta a sus necesidades.
PopupWindow pw = new PopupWindow(
this.getViewInflate().inflate(R.layout.pw_layout,
null, true, null),
100,100,true);
// display the popup in the center
pw.showAtLocation(layout, Gravity.CENTER, 0, 0);
pw.update(20,20,100,100);
Para los puntos de vista dentro de EditText
parte, usted tendrá que extender el EditText
. La descripción de cómo debe verse es la siguiente.
class emailEditText extends EditText {
List<NamePhotoView> ViewlistOfSelectedContacts; // create new
void addContact(String name, Bitmap photo) {
// create a new 'NamePhotoView' and add to the ViewlistOfSelectedContacts
}
@Override
void onDraw(Canvas canvas) {
for (....) {
// draw all views from the list. left to right.
}
// you have to some how offset the text start coordinate. then call super
super.onDraw(canvas);
}
}
Eso no parece una simple vista de texto dentro de un texto de edición .. Es un tipo de vista de "Ventana emergente" – Ronnie