diff options
author | Christian Schneppe <christian@pix-art.de> | 2017-12-23 21:45:08 +0100 |
---|---|---|
committer | Christian Schneppe <christian@pix-art.de> | 2017-12-23 21:45:08 +0100 |
commit | f87067131339803abac51b2c6b2bc5007be7542a (patch) | |
tree | 14646749da39152b8e30dd61be9765ee2ce3fb70 | |
parent | 11a4291585d9aaf8daf2c9324774bc589790c36f (diff) |
limit height of input field to 6 lines
-rw-r--r-- | src/main/res/layout/fragment_conversation.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/res/layout/fragment_conversation.xml b/src/main/res/layout/fragment_conversation.xml index b40567750..f75e9a2d8 100644 --- a/src/main/res/layout/fragment_conversation.xml +++ b/src/main/res/layout/fragment_conversation.xml @@ -46,7 +46,7 @@ android:inputType="textShortMessage|textMultiLine|textCapSentences" android:minHeight="48dp" android:minLines="1" - android:maxLines="4" + android:maxLines="6" android:paddingBottom="12dp" android:paddingLeft="8dp" android:paddingRight="8dp" |