我的Recyclerview是一個消息列表。RecyclerView項目wrap_content寬度
每個項目是一個線性佈局,寬度爲wrap_content
。
的問題是,當一個新項目被插入,該項目將如果它是更大的乘坐前一個項目的寬度(這使得它看起來像它有一個很大的填充)
我ViewHolder構造函數,但那些試圖setRecycable(false)
造成了一些問題,我想用不同的方法。
任何幫助表示讚賞。 感謝
編輯:佈局:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include
android:id="@+id/message_date_layout"
layout="@layout/time_bubble"/>
<LinearLayout
android:id="@+id/message_container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:layout_marginEnd="30dp"
android:layout_marginLeft="6dp"
android:layout_marginRight="30dp"
android:layout_marginStart="6dp"
android:background="@drawable/background_incoming_chat_bubble"
android:orientation="vertical"
android:padding="6dp">
//other views
</LinearLayout>
</LinearLayout>
CraeteViewHolder
@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
ChatMessagesAdapter.ViewHolder viewHolder;
LayoutInflater inflater = LayoutInflater.from(context);
View v = null;
switch (viewType) {
case OUTGOING:
v = inflater.inflate(R.layout.chat_bubble_outgoing, parent, false);
break;
case INCOMING:
v = inflater.inflate(R.layout.chat_bubble_incoming, parent, false);
break;
}
viewHolder = new ChatMessagesAdapter.ViewHolder(v);
return viewHolder;
}
請添加一些代碼。 – FiN
@FiN編輯原始文章 – PampaZiya
你可以分享'chat_bubble_outgoing'和'chat_bubble_incoming'佈局嗎? – FiN