Android布局自定义Shap圆形ImageView,可以单独设置背景与图片
2024-06-17 09:52:23 阅读次数:23
android,ci,xml
1.编写自定义圆形circle_shape.xml文件
<span ><?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http:///apk/res/android"
android:shape="oval"
android:useLevel="false">
<solid android:color="#11CC00"/>
<size android:width="50dp"
android:height="50dp"/>
</shape> </span>
2.编写layout_main.xml文件
<span ><LinearLayout xmlns:android="http:///apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="70pt"
android:layout_marginTop="0dp"
android:background="@color/self_bg_color"
android:gravity="center" >
<ImageView
android:id="@+id/zhongjie"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/circle_shape"
android:scaleType="centerInside"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
</LinearLayout></span>
3.效果显示
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/liuyunshengsir/5998183,作者:liuyunshengsir,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:Windows Server 2012 GUI与Core的切换
下一篇:CentOS 查询指定用户组下的所有用户