当前位置:操作系统 > 安卓/Android >>

Android UI布局整理

 

-----------------------------透明按钮

----------------------shape.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape android:shape="rectangle"
  xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#55222222"/>
    <corners android:radius="5.0dip" />
    <padding android:left="6.0dip"
     android:top="6.0dip"
 android:right="6.0dip"
 android:bottom="6.0dip"/>
</shape>

 

----------------.xml 布局

  <Button
            android:id="@+id/button1"
            android:layout_width="100px"
            android:layout_height="100px"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:background="@drawable/shape"
            android:gravity="center"
            android:text="360卫士"
            android:textColor="@android:color/white" />

----------ImageButton

 <ImageButton
  android:id="@+id/play_btn"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_centerInParent="true"

  android:background="@drawable/shape"
  android:src="@drawable/buttons_bg1" />

 

 

----------------------ImageButton

src与background

background图片放置底部,src图片置于background上.

background图片大于src图片

 作者:gongzibai
 

补充:移动开发 , Android ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,