Merge commit '17d0710277c596dcd9845640260dd7d5916cd14b' * commit '17d0710277c596dcd9845640260dd7d5916cd14b': MessageView: scroll to (0,0) on message change.
This commit is contained in:
commit
b3aca546a4
@ -21,6 +21,7 @@
|
||||
android:layout_height="fill_parent"
|
||||
android:background="@android:color/white">
|
||||
<ScrollView
|
||||
android:id="@+id/scrollview"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dip"
|
||||
android:layout_weight="1"
|
||||
|
@ -21,6 +21,7 @@
|
||||
android:layout_height="fill_parent"
|
||||
android:background="@android:color/white">
|
||||
<ScrollView
|
||||
android:id="@+id/scrollview"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dip"
|
||||
android:layout_weight="1"
|
||||
|
@ -123,6 +123,7 @@ public class MessageView extends Activity implements OnClickListener {
|
||||
private View mShowPicturesSection;
|
||||
private ImageView mSenderPresenceView;
|
||||
private ProgressDialog mProgressDialog;
|
||||
private View mScrollView;
|
||||
|
||||
private long mAccountId;
|
||||
private long mMessageId;
|
||||
@ -332,6 +333,7 @@ public class MessageView extends Activity implements OnClickListener {
|
||||
mSenderPresenceView = (ImageView) findViewById(R.id.presence);
|
||||
mNext = findViewById(R.id.next);
|
||||
mPrevious = findViewById(R.id.previous);
|
||||
mScrollView = findViewById(R.id.scrollview);
|
||||
|
||||
mNext.setOnClickListener(this);
|
||||
mPrevious.setOnClickListener(this);
|
||||
@ -770,6 +772,7 @@ public class MessageView extends Activity implements OnClickListener {
|
||||
mMessageContentView.scrollTo(0, 0);
|
||||
mMessageContentView.loadUrl("file:///android_asset/empty.html");
|
||||
}
|
||||
mScrollView.scrollTo(0, 0);
|
||||
mAttachments.removeAllViews();
|
||||
mAttachments.setVisibility(View.GONE);
|
||||
mAttachmentIcon.setVisibility(View.GONE);
|
||||
|
Loading…
Reference in New Issue
Block a user