このサンプルコードを試してください。それはあなたの要件に合っています。 EditText
部分の内側のビューのために
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);
、あなたは「EditText
を拡張することがあるでしょう。どのように見えるかの概要は次のとおりです。
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);
}
}
これは、edittext内のsimpletextviewのようには見えません。その表示の 'PopupWindow'ビュー – Ronnie