使用.png文件中的形状创建xml聊天气泡 [英] Create xml Chat Bubble With the Shape As in the .png File

查看:103
本文介绍了使用.png文件中的形状创建xml聊天气泡的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请问是否有人知道如何在下面创建聊天气泡的xml形状?我在网上发现的唯一示例是两个单独的形状,它们在布局中作为两个单独的背景放置-三角形和矩形。我试着将三角形和矩形组合在一起无济于事。三角形似乎隐藏在矩形中。
为三角形设置 top 属性以将其向下移动会使ImageView对象为空白。

Could I please ask if anyone knows how to create an xml shape of the chat bubble below? The only examples I found online were two separate shapes that were put as two separate backgrounds in a layout - a triangle and a rectangle. I tried combining the triangle and rectangle to no avail. The triangle seems to hide in the rectangle. Setting a top attribute to the triangle to move it down makes the ImageView object blank.

请看看我尝试了什么:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <!--rectangle with rounded corners-->
    <item android:top="0dp" android:bottom="20dp">
        <shape xmlns:android="http://schemas.android.com/apk/res/android"
            android:shape="rectangle">
            <solid android:color="@android:color/black" />
            <size
                android:width="106dp"
                android:height="20dp"/>
            <stroke
                android:width="1dp"
                android:color="#000" />
            <corners android:radius="8dp" />
        </shape>
    </item>
    <!--triangle-->
    <item android:bottom="0dp" android:top="20dp" android:gravity="center_horizontal|bottom">
        <rotate
            android:fromDegrees="45"
            android:toDegrees="45"
            android:pivotX="135%"
            android:pivotY="15%">
            <shape android:shape="rectangle">
                <solid android:color="@android:color/black" />
                <size
                    android:height="10dp"
                    android:width="10dp"/>
            </shape>
        </rotate>
    </item>
</layer-list>

这是imageView中的用法:

This is the usage in the imageView:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="net.eventilate.shapes.Balloon">
    <ImageView
        android:layout_width="106dp"
        android:layout_height="30dp"
        android:id="@+id/imageView2"
        android:contentDescription="@string/test"
        android:background="@drawable/balloon"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true" />
</RelativeLayout>

推荐答案

您可以使用此代码

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

<item android:top="0dp" android:bottom="10dp">
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
        <solid android:color="@android:color/holo_blue_light" />
        <size
            android:width="106dp"
            android:height="20dp"/>
        <stroke
            android:width="1dp"
            android:color="#40adc2" />
        <corners android:radius="4dp" />
    </shape>
</item>

<item android:bottom="0dp"
    android:top="0dp"
    android:gravity="center_horizontal|bottom">
    <rotate
        android:fromDegrees="45"
        android:toDegrees="45"
        android:pivotX="135%"
        android:pivotY="15%">
        <shape android:shape="rectangle">
            <solid android:color="@android:color/holo_blue_light" />
            <size
                android:height="10dp"
                android:width="10dp"/>
        </shape>
    </rotate>
</item>
</layer-list>

它会得到以下结果:

it get this result:

这篇关于使用.png文件中的形状创建xml聊天气泡的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆