我试图设置没有运气的ListPopupWindow的宽度和高度。我读到有关LayatParams的信息,但ListPopupWindow没有setLayoutParams。如何设置这些参数?

ListPopupWindow lpw = new ListPopupWindow(TestActivity.this);
CustomAdapter stringAdapter = new CustomAdapter(TestActivity.this, R.layout.row,strings);
lpw.setAdapter(stringAdapter);
lpw.setAnchorView(v);
lpw.setWidth(150);
lpw.setHeight(300);
lpw.show();


其中v是一个Button。

最佳答案

下面的代码对我来说很好用。


String[] listItems = {"item 1", "item 2 ", "list", "android", "item 3", "foobar", "bar", };
@SuppressWarnings({ "unchecked", "rawtypes" })
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    Button btn=(Button)findViewById(R.id.btnwillappear);
    btn.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            ListPopupWindow lpw = new ListPopupWindow(Test_listpopActivity.this);
            lpw.setAdapter(new ArrayAdapter(Test_listpopActivity.this,  android.R.layout.simple_list_item_1, listItems));
            lpw.setAnchorView(findViewById(R.id.txtwillappear));
            lpw.setWidth(150);
            lpw.setHeight(300);
            lpw.show();

        }
    });

}


有两个可能的问题。第一个是您的适配器,第二个是您的代码被执行的位置。对于后者,请确保您的代码不在onCreate中。

08-05 06:28