android button加边框,第三章,设置button边框(Android)
这样的方法是通过层叠几个图片实现边框效果。在res目录下的drawable目录下(没有就新建)建一个xml文件选layer-list。android:bottom="15dp"android:left="15dp"android:right="15dp"android:top="15dp">android:bottom="30dp"android:left="30dp"android:rig
这样的方法是通过层叠几个图片实现边框效果。
在res目录下的drawable目录下(没有就新建)建一个xml文件选layer-list。
android:bottom="15dp"
android:left="15dp"
android:right="15dp"
android:top="15dp">
android:bottom="30dp"
android:left="30dp"
android:right="30dp"
android:top="30dp">
布局文件:
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="horizontal"
>
android:id="@+id/main_button"
android:layout_width="match_parent"
android:layout_height="137dp"
android:background="@drawable/buttonl"
android:text="button01" />
效果截图:更多推荐
所有评论(0)