我已经在互联网上搜索了几天,仍然无法解决我的问题
我想打开相册并添加一个带有元素的叠加层,一个图像图标作为按钮和一个文本视图,以便人们按下图像,然后文本视图将显示一条消息。
现在,除了滚动之外,一切都很好。该消息似乎随机出现在其他文本视图中。有什么方法可以将消息保持在正确的位置?我已经引用了这个ViewHolder - 很好的做法 ,但仍然失败。我的代码是:
holder.ordernumber.addTextChangedListener(new TextWatcher()
{
public void onTextChanged(CharSequence s, int start, int before, int count) {
mynum_message[position]=s.toString();
}
public void beforeTextChanged(CharSequence s, int start, int count,int after) {
}
public void afterTextChanged(Editable s) {
}
});
我使用数组 mynum_message 来存储消息是一个位置
并使用设置文本
holder.mymessage.setText(String.valueOf(mynum_message[position]));
任何人请帮忙!亚历克斯