zoukankan      html  css  js  c++  java
  • android中使用图文并茂的按钮

    上代码:

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="2"
        android:gravity="center"
        android:background="#8fff" >
        <Button android:text="XX人员"
            android:textSize="12sp"
            android:textColor="#333"
            android:gravity="center_vertical|center_horizontal"
            android:id="@+id/unit_btn_cyry"
            android:layout_width="100dp"
            android:layout_height="40dp"
            android:padding="10dp"
            android:drawableLeft="@drawable/icon_cyry"
            android:background="@drawable/shape_both_corner_white"></Button>
        <Button android:text="XXX人员"
            android:textSize="12sp"
            android:textColor="#333"
            android:gravity="center_vertical|center_horizontal"
            android:id="@+id/unit_btn_xgry"
            android:layout_width="100dp"
            android:layout_height="40dp"
            android:padding="10dp"
            android:layout_marginLeft="20dp"
            android:drawableLeft="@drawable/icon_xgry"
            android:background="@drawable/shape_both_corner_white"></Button>
    </LinearLayout>
    

      

  • 相关阅读:
    LeetCode-434-字符串中的单词数
    LeetCode-415-字符串相加
    字符串
    序列
    元组
    列表
    repr()与str的区别
    输出函数print()
    输入函数input()
    MySQL中快速复制数据表方法汇总
  • 原文地址:https://www.cnblogs.com/shurun/p/6702808.html
Copyright © 2011-2022 走看看