助理理理(正经版) 2022-09-22 15:26 采纳率: 0%
浏览 22

eclipse 插件开发圆角button

eclipse插件开发 button怎么切换圆角
用代码块功能插入代码,请勿粘贴截图
  • 写回答

1条回答 默认 最新

  • 张三博客 张三解忧百货店官方账号 2022-09-28 22:26
    关注

    1.在res目录下的drawable目录下新建shape.xml文件

    <?xml version="1.0" encoding="utf-8"?>  
    <shape xmlns:android="http://schemas.android.com/apk/res/android"  
        android:shape="rectangle" >  
      
        <!-- 填充的颜色 -->  
        <solid android:color="#FF065E8D" />  
      
        <!-- 设置按钮的四个角为弧形 -->  
        <!-- android:radius 弧形的半径 -->  
        <corners android:radius="15dip" />  
      
        <!-- padding:Button里面的文字与Button边界的间隔 -->  
        <padding  
            android:bottom="10dp"  
            android:left="10dp"  
            android:right="10dp"  
            android:top="10dp" />  
    </shape>  
    

    2.在布局文件中调用

    <?xml version="1.0" encoding="utf-8"?>  
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
        android:layout_width="fill_parent"  
        android:layout_height="fill_parent"  
        android:orientation="vertical" >  
      
        <Button  
            android:id="@+id/roundButton"  
            android:layout_width="wrap_content"  
            android:layout_height="wrap_content"  
            android:background="@drawable/shape"  
            android:text="圆角按钮" />  
    </LinearLayout> 
    
    评论 编辑记录

报告相同问题?

问题事件

  • 创建了问题 9月22日

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘