1

我正面临一个聊天布局的实现。

我有一些来自 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 中的消息,并且每次滚动屏幕都会发生变化。

图 1 图 2

怎么了???谢谢!!

4

2 回答 2

1

当数据是 bindet 显示时,您应该对左右消息使用一个视图并在 bindView 中更改重力。

现在你有创建视图的方法 newView 但是当你滚动视图时被重用(有时有橙色,有时有绿色)

删除 newView 方法并在 bindView 中创建所有内容(使用一个视图)- 将更加简单和干净;-)

我在我的消息列表上做了这个 - 改变 LinearLayout 的重力

但是,如果您必须使用 2 个视图,请使用 getView 来膨胀视图 - 但是您失去了有效的视图创建(重用)

于 2013-11-15T10:13:05.967 回答
0

将 final 添加到您的文本框或使用文本框的持有人

于 2013-09-21T09:59:16.493 回答