Android开发之Spinner

今天课上学习了Spinner,做了一个很简单的程序,现将代码和截图放在这里供大家参考。 activity_spinner.xml

1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="" 3 xmlns:tools="" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent" 6 android:orientation="horizontal" 7 tools:context=".MainActivity"> 8 9 <Spinner 10 android:id="@+id/spinner1" 11 android:layout_width="wrap_content" 12 android:layout_height="wrap_content" 13 android:layout_marginTop="5dp" 14 android:layout_weight="1" /> 15 16 <Spinner 17 android:id="@+id/spinner2" 18 android:layout_width="wrap_content" 19 android:layout_height="wrap_content" 20 android:layout_marginTop="5dp" 21 android:layout_weight="1" /> 22 23 <Spinner 24 android:id="@+id/spinner3" 25 android:layout_width="wrap_content" 26 android:layout_height="wrap_content" 27 android:layout_marginTop="5dp" 28 android:layout_weight="1" /> 29 30 </LinearLayout>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgfydw.html