Hi im having a issue with text size not displaying correctly on my activity, the drop down it self is large(bottom picture) which is how i want it however when the drop down is not open it has small text(top picture). here is the xml layout the spinner pulls from
simple_spinner_dropdown_item.xml <TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="50sp" android:gravity="left" android:textColor="#000000" android:padding="5dip" android:textStyle="bold"/> and here is the xml of the menu in which the spinner is displayed on
main_menu.xml <Spinner android:id="@+id/spinnerMainMenu" android:layout_width="784dp" android:layout_height="wrap_content" android:layout_marginBottom="8dp" android:layout_marginTop="8dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintVertical_bias="0.072" tools:layout_editor_absoluteX="8dp" /> and finally the code for how it is displayed
MainMenu.java final Spinner mainMenuDrpDwn = findViewById(R.id.spinnerMainMenu); String[] machines = new String[]{"215 DT", "420 DT", "215 CANNAGIN"}; ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_dropdown_item, machines); adapter.setDropDownViewResource(R.layout.simple_spinner_dropdown_item); mainMenuDrpDwn.setAdapter(adapter); 

