Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is my spinner code :

Spinner food = (Spinner) findViewById(R.id.spinner1);
        ArrayAdapter<CharSequence> foodadapter = ArrayAdapter.createFromResource(
                this, R.array.item_array, android.R.layout.simple_spinner_item);
       foodadapter.setDropDownViewResource(android.R.layout.simple_spinner_item);

        food.setAdapter(foodadapter);

this is a part of layout file where I have described the spinner:

<Spinner
            android:id="@+id/spinner1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:layout_toRightOf="@+id/textView1" />

This is item_array

<resources>
    <string name="item_picker">Select an iten</string>
    <string-array name="item_array">
        <item>Pizza</item>
        <item>Burger</item>
        <item>Sandwiches</item>
        <item>Bread</item>
        <item>Pastries</item>
        <item>Snackers</item>

    </string-array>

</resources>

Note : I do not want simple_spinner_dropdown_item

I just want to increase the size.please tell me. thanks in advance

share|improve this question

3 Answers

up vote 9 down vote accepted

Save the below xml as spinner_layout.xml in layout folder

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/spinnerTarget"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:textColor="#000000"
          android:textSize="13sp"
/>

change the textSize which you want. and use the below adapter code to fill it.

Spinner food = (Spinner) findViewById(R.id.spinner1);
ArrayAdapter<CharSequence> foodadapter = ArrayAdapter.createFromResource(
            this, R.array.item_array, R.layout.spinner_layout);
foodadapter.setDropDownViewResource(R.layout.spinner_layout);
food.setAdapter(foodadapter);
share|improve this answer
this is increasing the size of spinner item after selected – divaNilisha May 2 '12 at 8:19
see my updated answer. – V.J. May 2 '12 at 8:20
...but not the items . example : items are pizza ,burger,sandwiches , etc. they are not increasing in font size, but after selection the value it shows in the spinner gets increased – divaNilisha May 2 '12 at 8:21
i have changed the value .... but its not helping , the problem is on above. – divaNilisha May 2 '12 at 8:22
i have change the code. See the setdropdownViewResource() – V.J. May 2 '12 at 8:23
show 5 more comments

You can change these settings in the layout file. The hello-spinner tutorial is very useful.

http://developer.android.com/guide/tutorials/views/hello-spinner.html

Add a new XML file to your layout folder.

Example: spinnerLayout.xml

<?xml version="1.0" encoding="utf-8"?>
    <TextView xmlns:android="http://schemas.android.com/apk/res/android"
              android:id="@+id/spinnerTarget"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              android:textSize="14pt"         
              android:textColor="#FF8B1500"
              android:gravity="center"/>

Change the adapter resource to your new layout file:

adapter = ArrayAdapter.createFromResource(
                this, R.array.sound, R.layout.spinnerLayout);
share|improve this answer

You could set textSize of your textView.xml by using

android:textSize="10sp" 
share|improve this answer
it can't work. i have checked it before. – V.J. May 2 '12 at 8:09
@BBExpert YES you are right – divaNilisha May 2 '12 at 8:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.