我正面临一个聊天布局的实现。
我有一些来自 sqlite DB、一个光标适配器和 2 个布局的数据: - 一个在右侧显示数据 - 一个在左侧显示数据
如您所见,布局只有两个区别:背景和方向(左、右)。如果消息是我的或来自我正在说话的用户,我将以编程方式选择布局。
这是列表视图行的两种布局。
布局右:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/roomLisViewtMessageText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:background="@drawable/speech_bubble_green"
android:layout_margin="5dip"
android:textColor="#FFF"
android:textSize="20sp" /></RelativeLayout>
左侧布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/roomLisViewtMessageText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:background="@drawable/speech_bubble_orange"
android:layout_margin="5dip"
android:textColor="#FFF"
android:textSize="20sp" /></RelativeLayout>
如您所见,我在参数的基础上切换布局。最初一切正常,但是当我开始滚动列表视图时,布局的分配方式错误,就好像适配器丢失了一些东西一样。
public class MyCursorAdapter extends CursorAdapter {
private static final String tag = "ADAPTER";
private LayoutInflater layoutInflater;
private Context mContext;
public MyCursorAdapter (Context context, Cursor c, int flags) {
super(context, c, flags);
mContext = context;
layoutInflater = LayoutInflater.from(context);
}
@Override
public View newView(Context context, Cursor cursor, ViewGroup parent){
int isMine = cursor.getInt(cursor.getColumnIndexOrThrow(DatabaseHelper._IS_MINE));
if(isMine==1) return layoutInflater.inflate(R.layout.room_list_view_left, parent, false);
else return layoutInflater.inflate(R.layout.room_list_view_right, parent, false);
}
/**
* @param view: The view in which the elements we set up here will be displayed.
* @param context: The running context where this ListView adapter will be active.
* @param cursor: The Cursor containing the query results we will display.
*/
@Override
public void bindView(View view, Context context, Cursor cursor) {
Log.v(tag,"position---->"+cursor.getPosition());
int isMine = cursor.getInt(cursor.getColumnIndexOrThrow(DatabaseHelper.IS_MINE));
String mess = cursor.getString(cursor.getColumnIndexOrThrow(DatabaseHelper.MESSAGE));
TextView messText = (TextView) view.findViewById(R.id.myLisViewtMessageText);
if (messText != null){
if(isMine==1){
Log.d(tag,"mess = "+mess+" isMine = "+isMine);
}
else{
Log.d(tag,"mess = "+mess+" isMine = "+isMine);
}
messText.setText(mess);
}
}
所以我在图 1 中有一个正常的行为,在向下滚动并返回顶部后,我会看到图 2 中的消息,并且每次滚动屏幕都会发生变化。
怎么了???谢谢!!