1. 程式人生 > >android輪播圖點的佈局實現

android輪播圖點的佈局實現

//values.styles.XML下
  <style name="image_status_on_style">
        <item name="android:layout_width">wrap_content</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:src">@android:drawable/presence_online</item>
    </style>

    <style name="image_status_off_style"
> <item name="android:layout_width">wrap_content</item> <item name="android:layout_height">wrap_content</item> <item name="android:src">@android:drawable/presence_invisible</item> </style>
//xml檔案中引用
<ImageView style="@style/image_status_off_style"
>
</ImageView> <ImageView style="@style/image_status_off_style" > </ImageView> <ImageView style="@style/image_status_on_style" > </ImageView> <ImageView style="@style/image_status_off_style" > </ImageView>

這裡寫圖片描述