Android - Remove Spinner Dropdown Arrow Android - Remove Spinner Dropdown Arrow android android

Android - Remove Spinner Dropdown Arrow


Background @null in the layout xml file also does the trick, if you don't want to declare a specific style:

        <Spinner            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:background="@null"/>


This may help You

<?xml version="1.0" encoding="utf-8"?><resources>    <style parent="@android:style/Widget.Spinner" name="SpinnerwithNoArrow">        <item name="android:background">@android:drawable/edit_text</item>    </style></resources>

Use this style in ur spinner


Please try this simple way:

android:background="@android:color/transparent"