アクティビティには、編集テキスト、送信ボタン、およびサーバーからデータを取得するリストビューが含まれます。しかしアイテムを追加した後にリストビューが下にスクロールしない
editText.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);
scrollMyListViewToBottom();
Log.i("yoyo","ListSize Before: " + size);
}
});
私は送信ボタンをクリックし、notifydatasetchanged();
が呼び出されたときに、リストビューの更新後に、そうでないとき、私は、編集テキストをクリックすると、それがになっているとして、それは下にスクロールします下にスクロールします。 CommentQuery();
で何が起こっているのか不思議であれば、より多くのコードを提供できます。
submitComment.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
commentItem = new ParseObject("CommentItem");
commentItem.put("parentUser", feedUserName);
commentItem.put("parentFeed", feedItem);
// commentItem.put("parentObjectId", objectId);
commentItem.put("commentText", String.valueOf(commentText.getText()));
commentItem.put("username", ParseUser.getCurrentUser().getUsername());
commentItem.put("country", ParseUser.getCurrentUser().getInt("country"));
commentItem.put((ParseUser.getCurrentUser().getUsername() + "globalPoints"), 0);
commentItem.put("parentObjectId", objectId);
replies +=1;
commentItem.saveInBackground(new SaveCallback() {
@Override
public void done(ParseException e) {
if (e == null) {
arrayCommentList.clear();
comments.clearCachedResult();
CommentQuery();
customCommentListViewAdapter.notifyDataSetChanged();
Log.i("yoyo","ListSize After: " + size); //size changes like it is supposed to
scrollMyListViewToBottom(); //doesn't do anything
}
}
});
}
});
scrollMyListViewToBottom()関数:
public void scrollMyListViewToBottom() {
commentList.post(new Runnable() {
@Override
public void run() {
// Select the last row so it will scroll into view...
commentList.setSelection(size);
}
});
}
CommentQuery機能:
public void CommentQuery(){
comments = new ParseQuery<>("CommentItem");
comments.setLimit(99);
comments.whereEqualTo("parentObjectId", objectId);
comments.findInBackground(new FindCallback<ParseObject>() {
@Override
public void done(List<ParseObject> mobjects, ParseException e) {
if(e == null){
for(ParseObject object : mobjects){
parseObs = mobjects;
size = parseObs.getsize();
commentData = new HashMap<>();
commentData.put("username", object.getString("username"));
commentData.put("feed", object.getString("commentText"));
commentData.put("likes", String.valueOf(object.getInt("likes")));
commentData.put("country", String.valueOf(object.getInt("country")));
commentData.put("replies", String.valueOf(0));
commentData.put("global", String.valueOf(object.getInt(usernameText+"globalPoints")));
arrayCommentList.add(commentData);
}
customCommentListViewAdapter = new CustomCommentListViewAdapter(getApplicationContext(), arrayCommentList);
commentList.setAdapter(customCommentListViewAdapter);
}
}
});
}
あなたは 'size'を増やすようには思われないので、私はスクロールが変更されないことを期待します。 –
ログを読むと、 'size'が変わったと言われます。 @MattClark – grant
ログを投稿したことがありますか?) –