您好,登錄后才能下訂單哦!
要調(diào)整Spinner控件的列表項(xiàng)間距,可以通過自定義Spinner的下拉列表樣式來實(shí)現(xiàn)。下面是一個(gè)示例代碼:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16sp" />
</LinearLayout>
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceListItemSmall"
android:gravity="center_vertical"
android:paddingStart="10dp"
android:paddingEnd="10dp"
android:singleLine="true"
android:ellipsize="marquee" />
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.spinner_item, items);
spinner.setAdapter(adapter);
通過以上步驟,你就可以自定義Spinner下拉列表項(xiàng)的樣式,并調(diào)整列表項(xiàng)的間距了。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。