【发布时间】:2018-01-20 17:45:05
【问题描述】:
我正在为每条消息制作一个具有这种形状的背景的信使应用程序:
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<corners
android:bottomLeftRadius="80dp"
android:bottomRightRadius="80dp"
android:topRightRadius="80dp"
android:topLeftRadius="80dp"
/>
<solid android:color="#fff"/>
但问题是当消息很长时角落很大,这使我的消息布局很糟糕!我想知道是否有另一种方法可以制作圆形背景!
【问题讨论】:
-
您能否为预期布局和实际布局添加一些图形/模型图像。