Adding a Horizontal Scroll View to a ListView
问题 I currently have an adapter that takes two images and a text view to add to a listView . I want to change this so that I can add a horizontalScrollView inside each list item that contains the images. Would there be any way to do this? This my current working adapter as described above with two imageView 's and a textView public class MyAdapter extends BaseAdapter { private Context mContext; private List<Bean> mList; private PopupWindow popUpWindow; private LayoutInflater inflater; public