Quantcast
Channel: Appcelerator Developer Center Q&A Unanswered Questions 20
Viewing all articles
Browse latest Browse all 8068

Change picker font size for android

$
0
0

I want to change the size and the font size of a picker for android, i've tried a lot and nothing works. Here's my code:

var selectProducto = Ti.UI.createPicker({
        width:'auto',
        height:'auto',
        font:{fontSize:PixelsToDPUnits(18)}
    });
 
    var data = [];
    data[0]=Ti.UI.createPickerRow({title:'Selecciona'});
    data[1]=Ti.UI.createPickerRow({title:'Strawberries'});
    data[2]=Ti.UI.createPickerRow({title:'Mangos'});
    data[3]=Ti.UI.createPickerRow({title:'Grapes'});
    selectProducto.add(data);
 
    selectProducto.selectionIndicator = true;
 
    self.add(selectProducto);

Viewing all articles
Browse latest Browse all 8068

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>