Android Studio(6)

1、下拉列表框:

<Spinner
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:entries="@array/ctype">
</Spinner>

在res下的values目录下新建一个数组资源文件,在里面定义一个字符串数组,

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="ctype">
<item>全部</item>
<item>电影</item>
<item>图书</item>
<item>游戏</item>
</string-array>
</resources>

2、列表视图:

<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:entries="@array/ctype">
</ListView>

3、滚动视图语法:

<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textSize="25sp"
android:text="@string/content"/>
</ScrollView>

猜你喜欢

转载自www.cnblogs.com/tianwenjing123-456/p/12322195.html