android에서 button이 minWidth가 지정되어 있는 걸까요?

android에서 button의 width를 Ti.UI.SIZE로 주고 title을 한글자만 지정해도 width가 마치 "25%"를 준것 마냥 되는데 혹시 이런문제를 겪으신분 없나요?

테스트해보니 저도 같은 현상이 나타나네요. (tested android simulator galaxyS5 4.4.4)
Ti.UI.SIZE 대신 number를 적으니 줄어드네요.

예전에는 안이랬던것 같은데요. 그래서 mobile sdk를 잠시 뒤져봤는데 관련된 부분을 못찾겠더군요.

일단 android theme을 이용해서 button의 스타일을 바꿔줘서 해결은 했습니다.

	<style name="mytheme" parent="@style/Theme.AppCompat">
		<item name="android:textAllCaps">false</item>
		<item name="android:buttonStyle">@style/MyButton</item>
	</style>
	<style name="MyButton">
		<item name="android:minWidth">20dp</item>
		<item name="android:minHeight">20dp</item>
	</style>
2개의 좋아요