- more chat ui improvements

- new primary and accent colors
- use color names in most drawables
This commit is contained in:
Juha Heinanen
2019-03-12 07:00:55 +02:00
parent 5abcb98a67
commit 16521106a3
20 changed files with 47 additions and 33 deletions
+13 -7
View File
@@ -20,8 +20,13 @@
<ListView
android:id="@+id/chats"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/account">
android:layout_height="match_parent"
android:layout_below="@+id/account"
android:layout_above="@id/peerUri"
android:transcriptMode="alwaysScroll"
android:stackFromBottom="true"
android:divider="#00000000"
android:dividerHeight="10dp" >
</ListView>
<AutoCompleteTextView
@@ -29,23 +34,24 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:textSize="18sp"
android:layout_alignParentStart="true"
android:layout_alignParentBottom="true"
android:layout_marginStart="0dp"
android:layout_marginBottom="10dp"
android:layout_toStartOf="@+id/plusButton"
android:textSize="18sp"
android:inputType="textEmailAddress"
android:hint="Chat Peer" >
android:hint="New Chat Peer" >
</AutoCompleteTextView>
<ImageButton
android:id="@+id/plusButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/plus"
android:background="@null"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true" >
android:layout_alignParentBottom="true"
android:src="@drawable/plus"
android:background="@null" >
</ImageButton>
</RelativeLayout>