xml 1像素边框。放在android drawable文件夹里面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 1像素边框。放在android drawable文件夹里面相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="1dp">
<item
android:bottom="-1dp"
android:top="1dp"
android:right="-1dp"
android:left="-1dp">
<shape
android:shape="rectangle">
<stroke
android:width="1dp"
android:color="@color/grey"/>
<solid
android:color="@color/white"/>
</shape>
</item>
</layer-list>
以上是关于xml 1像素边框。放在android drawable文件夹里面的主要内容,如果未能解决你的问题,请参考以下文章
android开发笔记如何让ImageButton去掉白色边框和让ImageButton具有点击效果
android 用XML定义边框,
android背景选择器selector用法汇总
ANDROID布局实现圆角边框
xml布局内容总结--Android
android背景选择器selector用法汇总