When meesage is too long it is not truncated and display whole on screen withouth scroll. Message should be trimed or scrollable

|
<TextView |
|
android:id="@+id/message" |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:layout_alignParentLeft="true" |
|
android:layout_below="@id/header" |
|
android:layout_marginLeft="8dp" |
|
android:fontFamily="monospace" |
|
android:maxLines="2" |
|
android:scrollHorizontally="true" |
|
android:ellipsize="end" |
|
android:text="message" |
|
android:textAllCaps="false" |
|
android:textColor="@color/appWhite" |
|
android:textSize="16sp" |
|
android:textStyle="bold" /> |
When meesage is too long it is not truncated and display whole on screen withouth scroll. Message should be trimed or scrollable
krypton-android/app/src/main/res/layout/commit_remote.xml
Lines 54 to 69 in f623262