is it possible to create listview inside dialog?

前端 未结 6 1343
天涯浪人
天涯浪人 2020-11-30 23:17

i have created a custom dialog class

public class NewPost extends Dialog
{
// functionality

}

now my requirement is to create listview ins

6条回答
  •  夕颜
    夕颜 (楼主)
    2020-11-30 23:28

    You don't really have to extend listActivity in order to use listviews.

    Extending listActivity will give you some functionality for free, such as getListView() (if I recall the method name correctly), but that can just as well be done manually with findViewById() just as any other view.

提交回复
热议问题