mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-13 12:35:06 -05:00
MessageListView: Set transcript mode to normal (Only automatically scroll if the last item is visible). Fixes #119.
This commit is contained in:
parent
dbdc731965
commit
81b7fe798c
@ -51,15 +51,13 @@ public class MessageListView extends ListView
|
||||
setVerticalFadingEdgeEnabled(false);
|
||||
setBackgroundResource(R.layout.conversation_background);
|
||||
setScrollBarStyle(SCROLLBARS_OUTSIDE_INSET);
|
||||
setTranscriptMode(TRANSCRIPT_MODE_ALWAYS_SCROLL);
|
||||
|
||||
// Scale padding by screen density
|
||||
float density = context.getResources().getDisplayMetrics().density;
|
||||
int padding = (int) (5 * density);
|
||||
setPadding(padding, padding, padding, padding);
|
||||
|
||||
// XXX: This should be dynamically
|
||||
setTranscriptMode(TRANSCRIPT_MODE_ALWAYS_SCROLL);
|
||||
setTranscriptMode(TRANSCRIPT_MODE_NORMAL);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user