Welcome to JiKe DevOps Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
726 views
in Technique[技术] by (71.8m points)

changing Spinner Background add wierd dark border on popup on api 24 but works fine on latest android versions

here is my code

<Spinner
android:id="@+id/spinnerstudent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:backgroundTint="@color/white"
android:textColor="@color/white"
android:popupBackground="@android:color/white" />

Spinner Item Code '''

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@android:id/text1"
        style="?android:attr/spinnerItemStyle"
        android:singleLine="true"
        android:textColor="@color/black"
        android:textSize="20sp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ellipsize="marquee"
        android:padding="8dp"
        android:textAlignment="inherit" />

'''

this adds dark border on popup, do someone Know how to remove that border on api 24 (works fine on latest API versions)

question from:https://stackoverflow.com/questions/65882497/changing-spinner-background-add-wierd-dark-border-on-popup-on-api-24-but-works-f

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

Please log in or register to answer this question.

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to JiKe DevOps Community for programmer and developer-Open, Learning and Share
...