forked from mirror/monocles_chat_clean
Fix and improve private message hint
This commit is contained in:
parent
34b8722434
commit
c29ed31476
1 changed files with 13 additions and 11 deletions
|
@ -174,6 +174,19 @@
|
|||
android:inputType="textShortMessage|textMultiLine|textCapSentences"
|
||||
android:visibility="gone" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/text_input_hint"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:maxLines="1"
|
||||
android:padding="4dp"
|
||||
android:layout_marginHorizontal="60dp"
|
||||
android:textSize="14sp"
|
||||
android:textStyle="bold|italic"
|
||||
android:textColor="?colorOnTertiaryContainer"
|
||||
android:visibility="visible"
|
||||
tools:text="@string/private_message_to" />
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/textsend"
|
||||
android:layout_width="match_parent"
|
||||
|
@ -200,17 +213,6 @@
|
|||
android:paddingVertical="8dp"
|
||||
android:animateLayoutChanges="true" >
|
||||
|
||||
<TextView
|
||||
android:id="@+id/text_input_hint"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="-3dp"
|
||||
android:maxLines="1"
|
||||
android:textAppearance="?textAppearanceBodySmall"
|
||||
android:textColor="?colorOnTertiaryContainer"
|
||||
android:visibility="visible"
|
||||
tools:text="@string/private_message_to" />
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/media_preview"
|
||||
android:layout_width="wrap_content"
|
||||
|
|
Loading…
Reference in a new issue