如何创建像TextView和EditText这样的Whatsapp?

时间:2016-07-05 22:08:55

标签: android xml layout android-edittext textview

我正在尝试为Android构建一个简单的聊天应用程序(使用Native SDK),并且我在为UI构建一个漂亮的布局时遇到了一些麻烦,特别是对于EditText和TextView元素。我想创建像Whatsapp App for Android:

enter image description here

目标是在两个元素中创建一个具有这个尖边的形状。我做了一些研究,发现我必须使用shape标签构建一个资源文件,并将其添加到android:background属性中。但我无法弄清楚如何在图像中创建那些尖锐的边缘。任何帮助表示赞赏!

1 个答案:

答案 0 :(得分:0)

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

<ListView
    android:background="#f1f1f1"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
</ListView>

    <LinearLayout
        android:padding="10dp"
        android:gravity="center"
        android:weightSum="1"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true">

        <EditText
            android:paddingBottom="3dp"
            android:layout_marginRight="10dp"
            android:layout_weight=".70"
            android:layout_width="match_parent"
            android:layout_height="45dp"
            android:background="@drawable/lgbg"
            android:hint="Add item" />

        <ImageView
            android:layout_gravity="center"
            android:foregroundGravity="center"
            android:padding="13dp"
            android:background="@drawable/send"
            android:layout_weight=".30"
            android:layout_width="70dp"
            android:layout_height="50dp"
            android:src="@drawable/ic_send_white" />

    </LinearLayout>