128 lines
5.3 KiB
XML
128 lines
5.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.ck.ckcollar.app.widget.CKLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:gravity="center_horizontal"
|
|
android:background="@color/backgroundColor"
|
|
>
|
|
<include layout="@layout/action_bar"></include>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
></androidx.recyclerview.widget.RecyclerView>
|
|
|
|
<com.ck.ckcollar.app.widget.CKLinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:background="@color/white"
|
|
android:gravity="center_vertical"
|
|
android:paddingHorizontal="20dp"
|
|
>
|
|
<com.ck.ckcollar.app.widget.CKImageView
|
|
android:id="@+id/btnKeyboard"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@mipmap/image_audio"
|
|
android:visibility="gone"
|
|
></com.ck.ckcollar.app.widget.CKImageView>
|
|
|
|
<com.ck.ckcollar.app.widget.CKEditView
|
|
android:id="@+id/editMessage"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="34dp"
|
|
android:layout_weight="1"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="14sp"
|
|
android:textColorHint="@color/textColor"
|
|
android:hint="@string/please_input_message"
|
|
android:paddingHorizontal="16dp"
|
|
android:paddingVertical="5dp"
|
|
android:layout_marginVertical="10dp"
|
|
android:layout_marginHorizontal="12dp"
|
|
android:background="@drawable/bg_input_message"
|
|
android:imeOptions="actionSend"
|
|
android:inputType="text"
|
|
android:maxLength="100"
|
|
></com.ck.ckcollar.app.widget.CKEditView>
|
|
<com.ck.ckcollar.app.widget.CKImageView
|
|
android:id="@+id/btnSmile"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@mipmap/image_smile"
|
|
></com.ck.ckcollar.app.widget.CKImageView>
|
|
|
|
<com.ck.ckcollar.app.widget.CKImageView
|
|
android:id="@+id/btnMore"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@mipmap/image_more"
|
|
android:layout_marginLeft="12dp"
|
|
></com.ck.ckcollar.app.widget.CKImageView>
|
|
</com.ck.ckcollar.app.widget.CKLinearLayout>
|
|
|
|
<com.ck.ckcollar.app.widget.CKLinearLayout
|
|
android:id="@+id/contentBottom"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="200dp"
|
|
android:paddingHorizontal="20dp"
|
|
android:paddingVertical="12dp"
|
|
android:orientation="horizontal"
|
|
android:background="@color/white"
|
|
android:visibility="gone"
|
|
>
|
|
|
|
<com.ck.ckcollar.app.widget.CKLinearLayout
|
|
android:id="@+id/conetnt1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:gravity="center_horizontal"
|
|
>
|
|
|
|
<com.ck.ckcollar.app.widget.CKImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@mipmap/image_cus_camera"
|
|
></com.ck.ckcollar.app.widget.CKImageView>
|
|
|
|
<com.ck.ckcollar.app.widget.CKTextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="14sp"
|
|
android:text="@string/camera"
|
|
android:layout_marginTop="10dp"
|
|
></com.ck.ckcollar.app.widget.CKTextView>
|
|
</com.ck.ckcollar.app.widget.CKLinearLayout>
|
|
<com.ck.ckcollar.app.widget.CKLinearLayout
|
|
android:id="@+id/conetnt2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:gravity="center_horizontal"
|
|
android:layout_marginLeft="16dp"
|
|
>
|
|
|
|
<com.ck.ckcollar.app.widget.CKImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@mipmap/image_cus_photo"
|
|
></com.ck.ckcollar.app.widget.CKImageView>
|
|
|
|
<com.ck.ckcollar.app.widget.CKTextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="14sp"
|
|
android:text="@string/photo"
|
|
android:layout_marginTop="10dp"
|
|
></com.ck.ckcollar.app.widget.CKTextView>
|
|
</com.ck.ckcollar.app.widget.CKLinearLayout>
|
|
|
|
</com.ck.ckcollar.app.widget.CKLinearLayout>
|
|
</com.ck.ckcollar.app.widget.CKLinearLayout> |