作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 iOS 应用程序中看到过它:
我想在我的 Android 应用程序中实现这样的 TextView。所以我制作了这个可绘制对象:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#fff"/>
<stroke android:width="1dp"
android:color="@color/colorPrimary" />
<padding android:left="5dp"
android:top="5dp"
android:right="5dp"
android:bottom="5dp"/>
<corners android:bottomRightRadius="7dp"
android:bottomLeftRadius="7dp"
android:topLeftRadius="7dp"
android:topRightRadius="7dp"/>
</shape>
但我不知道如何制作左边的蓝色。谁能帮帮我?
谢谢
最佳答案
你可以试试这个:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#FF0000"/>
<corners
android:bottomLeftRadius="10dp"
android:bottomRightRadius="5dp"
android:topLeftRadius="5dp"
android:topRightRadius="10dp"/>
</shape>
</item>
<item android:left="5dp"
>
<shape android:shape="rectangle">
<solid android:color="#FFFFFF"/>
<corners
android:bottomLeftRadius="5dp"
android:bottomRightRadius="5dp"
android:topLeftRadius="5dp"
android:topRightRadius="5dp"/>
</shape>
</item>
</layer-list>
关于android - 如何塑造这个 TextView 左侧的边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41043474/
你好 Stackoverflow, 我现在正在编写 API 相当长的一段时间,现在它可以与这些更大的 API 之一一起使用。开始想知道如何塑造这个 API,因为我多次在更大的平台上看到一个大实体(例如
我想问一下如何在android Material Design中创建改变形状的动画。这是我从 Android Material Design 指南中获得的视频。 Material can change
我正在尝试找出适合我想要拟合的模型的正确语法。这是一个时间序列预测问题,我想在将时间序列输入 LSTM 之前使用一些密集层来改进时间序列的表示。 这是我正在使用的虚拟系列: import pandas
我是一名优秀的程序员,十分优秀!