Make sure scrollbar does not overlap message items.
This commit is contained in:
parent
547f4ff0cb
commit
1d97e75753
2 changed files with 8 additions and 6 deletions
|
@ -10,10 +10,7 @@
|
|||
<FrameLayout
|
||||
android:layout_height="0dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_weight="11"
|
||||
android:layout_marginLeft="10dip"
|
||||
android:layout_marginRight="10dip"
|
||||
android:layout_marginBottom="2dip">
|
||||
android:layout_weight="11">
|
||||
|
||||
<ListView
|
||||
android:id="@android:id/list"
|
||||
|
@ -22,7 +19,8 @@
|
|||
android:stackFromBottom="true"
|
||||
android:transcriptMode="normal"
|
||||
android:divider="@android:color/transparent"
|
||||
android:dividerHeight="5dp"/>
|
||||
android:dividerHeight="5dp"
|
||||
android:layout_marginBottom="2dip"/>
|
||||
|
||||
</FrameLayout>
|
||||
|
||||
|
|
|
@ -3,7 +3,11 @@
|
|||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="match_parent">
|
||||
android:layout_width="match_parent"
|
||||
android:paddingRight="10dp"
|
||||
android:paddingStart="10dp"
|
||||
android:paddingLeft="10dp"
|
||||
android:paddingEnd="10dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_height="wrap_content"
|
||||
|
|
Reference in a new issue