Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> xml 實現圓形圖 和 橢圓形圖,xml圓形

xml 實現圓形圖 和 橢圓形圖,xml圓形

編輯:關於android開發

xml 實現圓形圖 和 橢圓形圖,xml圓形


1. 效果圖

2.圓形圖

<ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:background="@drawable/bg_btn_round" />

bg_btn_round.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval" >

    <solid android:color="@android:color/white" />

    <size
        android:height="30dp"
        android:width="30dp" />
    <stroke android:width="1dp" 
        android:color="@color/grey"/>

</shape>

2. 橢圓形圖

<ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:background="@drawable/bg_btn_oval_gray" />

bg_btn_oval_gray.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >
    <corners  
        android:topLeftRadius="15dp"
        android:topRightRadius="15dp"
        android:bottomRightRadius="15dp"
        android:bottomLeftRadius="15dp"/>
    <solid android:color="@color/bg_btn_oval_gray" />
 
    <size
        android:height="30dp"
        android:width="80dp" />
    <stroke android:width="1dp" 
        android:color="@color/grey"/>

</shape>

3. 實現藍色效果,把<solid>的顏色改為藍色就可以了

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved