SES-348 Adding a char limit to the input field in conversations

This commit is contained in:
ThomasSession 2024-09-13 10:51:16 +10:00
parent 41386fc716
commit bdbc2c1e50
2 changed files with 2 additions and 0 deletions

View File

@ -45,6 +45,7 @@
android:layout_marginEnd="64dp"
android:background="@null"
android:gravity="center_vertical"
android:maxLength="@integer/max_input_chars"
android:hint="@string/message"
android:textColorHint="?attr/input_bar_text_hint"
android:textColor="?input_bar_text_user"

View File

@ -7,4 +7,5 @@
<integer name="max_user_nickname_length_chars">35</integer>
<integer name="max_group_and_community_name_length_chars">35</integer>
<integer name="max_input_chars">2000</integer>
</resources>