我按照此示例创建了一个聊天:http://warting.se/2012/06/04/chat-bubbles-in-android/ 工作正常,但我希望当我添加一条新消息时,ListView底部显示的消息会添加到顶部,如whatsapp。
我做了
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="80dp"
android:divider="@android:color/transparent"
android:dividerHeight="0dp">
</ListView>
<RelativeLayout
android:id="@+id/form"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:orientation="vertical">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:ems="10"
android:id="@+id/chatText"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_toLeftOf="@+id/buttonSend"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enviar"
android:id="@+id/buttonSend"
android:layout_alignBottom="@+id/chatText"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:background="@color/action_bar"
android:textColor="#FFF"/>
</RelativeLayout>
ListAdapter
public class DiscussArrayAdapter extends ArrayAdapter<OneComment> {
private TextView countryName;
private List<OneComment> countries = new ArrayList<OneComment>();
private LinearLayout wrapper;
public DiscussArrayAdapter(Context context, int resource) {
super(context, resource);
}
@Override
public void add(OneComment object) {
countries.add(object);
super.add(object);
}
public int getCount() {
return this.countries.size();
}
public OneComment getItem(int index) {
return this.countries.get(index);
}
public View getView(int position, View convertView, ViewGroup parent) {
View row = convertView;
if (row == null) {
LayoutInflater inflater = (LayoutInflater) this.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
row = inflater.inflate(R.layout.listitem_discuss, parent, false);
}
wrapper = (LinearLayout) row.findViewById(R.id.wrapper);
OneComment coment = getItem(position);
countryName = (TextView) row.findViewById(R.id.comment);
countryName.setText(coment.comment);
countryName.setBackgroundResource(coment.left ? R.drawable.bubble_yellow : R.drawable.bubble_green);
wrapper.setGravity(coment.left ? Gravity.LEFT : Gravity.RIGHT);
return row;
}
public Bitmap decodeToBitmap(byte[] decodedByte) {
return BitmapFactory.decodeByteArray(decodedByte, 0, decodedByte.length);
}
}
答案 0 :(得分:2)
而不是:
countries.add(object);
super.add(object);
使用此:
countries.add(0,object);
super.insert(0,object);
0
表示数组中的位置,即开头。
答案 1 :(得分:1)
您必须在第一个位置添加对象。试试这个:
@Override
public void add(OneComment object) {
countries.add(0, object);
super.insert(0, object);
}
您从ArrayList调用“add”,并从ArrayAdapter调用“insert”。
我希望它有所帮助。
答案 2 :(得分:1)
我前几次遇到过同样的问题。在将List
传递给List<OneComment>
之前,我重新命令Adapter
(在您的情况下应为{{1}}。)对于Java订单参考here。
答案 3 :(得分:0)
<ListView
android:stackFromBottom="true"
...
></ListView>
在ListView中添加此行。
答案 4 :(得分:-1)
在 ScrollView 中使用 LinearLayout 。将 ScrollView 的高度设置为 MATCH_PARENT ,并将 LinearLayout 的高度设置为 WRAP_CONTENT 。将 ScrollView 的重力设置为 BOTTOM 。将 LinearLayout 的方向设置为垂直。为chat_message_item创建另一个XML布局,并在弹出新消息时对此布局进行充气。将 LinearLayout 中的新项目膨胀并添加为 mLinearLayout.addView(chatMessageItem)。
这样可行。