发布网友 发布时间:2022-04-23 10:08
共1个回答
热心网友 时间:2023-10-10 22:28
其实就是两个布局,里面头像,对话框控件的android:id一样,然后再adapter中getview()根据用户判断选择不同的加载就OK了,代码类似于if (判断) { view = LayoutInflater.from(activity).inflate( R.layout.left, null);//左边的布局 } else { view = LayoutInflater.from(activity).inflate( R.layout.right, null);//右边的布局 } ImageView avatar = (ImageView) view.findViewById();//头像 TextView msg = (TextView) view.findViewById(R.id.);//对话框