ultrasonic-app-subsonic-and.../ultrasonic/src/main/res/layout/chat.xml

47 lines
1.3 KiB
XML
Raw Normal View History

2013-05-22 07:47:40 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:layout_width="fill_parent"
a:layout_height="fill_parent"
a:orientation="vertical" >
2020-09-21 12:17:55 +02:00
<ListView
a:id="@+id/chat_entries_list"
2013-05-22 07:47:40 +02:00
a:layout_width="fill_parent"
a:layout_height="0dip"
2020-09-21 12:17:55 +02:00
a:layout_weight="1.0" />
<LinearLayout
a:layout_height="4dip"
a:layout_width="fill_parent"
2013-05-22 07:47:40 +02:00
a:layout_marginTop="4dip"
a:background="@drawable/drop_shadow" />
<LinearLayout
a:layout_width="fill_parent"
a:layout_height="wrap_content"
a:orientation="horizontal"
a:gravity="bottom" >
<EditText
a:id="@+id/chat_edittext"
a:layout_width="0dip"
a:layout_height="40dip"
a:layout_weight="1"
a:autoLink="all"
a:hint="@string/chat.send_a_message"
2020-09-21 12:17:55 +02:00
a:inputType="textEmailAddress|textMultiLine"
2013-05-22 07:47:40 +02:00
a:linksClickable="true"
a:paddingBottom="10dip"
a:paddingTop="10dip" />
2020-09-21 12:17:55 +02:00
2013-05-22 07:47:40 +02:00
<ImageButton
a:id="@+id/chat_send"
a:layout_width="55dip"
2013-05-22 07:47:40 +02:00
a:layout_height="40dip"
a:background="@color/transparent"
2013-05-22 07:47:40 +02:00
a:src="?attr/chat_send" />
2020-09-21 12:17:55 +02:00
2013-05-22 07:47:40 +02:00
</LinearLayout>
2020-09-21 12:17:55 +02:00
</LinearLayout>