要自定义 Android Spinner 弹出窗口,可以通过定义一个自定义的布局文件来实现。以下是一个简单的示例:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:padding="10dp"
android:gravity="center"/>
<ImageView
android:id="@+id/image_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/ic_arrow_down"
android:padding="10dp"
android:layout_gravity="center"/>
</LinearLayout>
Spinner spinner = findViewById(R.id.spinner);
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this,
R.array.planets_array, android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource(R.layout.custom_spinner_layout);
spinner.setAdapter(adapter);
通过以上步骤,就可以实现自定义 Android Spinner 弹出窗口的效果。可以根据实际需求修改 custom_spinner_layout.xml 文件来定制自己想要的样式。