高级UI组件(二)

1.图像视图

<ImageView
        android:id="@+id/imageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/qq"
       />

 2.图像切换器

<ImageSwitcher
        android:layout_width="match_parent"
        android:layout_height="match_parent"></ImageSwitcher>

3.下拉列表框

<Spinner
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:entries="@array/ctpy"></Spinner>
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string-array name="ctpy">
        <item>全部</item>
        <item>语文</item>
        <item>英语</item>
        <item>数学</item>
        <item>物理</item>
        <item>化学</item>
        <item>生物</item>
    </string-array>
</resources>

猜你喜欢

转载自www.cnblogs.com/zwx655/p/12317513.html
今日推荐