2013-12-10 17 views
0

奇怪我有這樣的微調:的Android窗口小部件微調上看起來的Galaxy S GT-I9000

<Spinner 
     android:id="@+id/language_selector" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentRight="true" 
     android:layout_centerVertical="true" 
     android:layout_marginBottom="10dp" 
     android:layout_marginRight="8dp" 
     android:layout_marginTop="10dp" 
     android:gravity="center" 
     android:padding="4dp" 
     android:textSize="12sp" /> 

它看起來像它應該對所有我已經測試的設備。我最近收到一份錯誤報告,說在Galaxy S GT-I9000上它看起來很奇怪。我借用了Galaxy S GT-I9000並確認,向下的箭頭顯示在文本的頂部,而不是顯示在文本的右側。

下面是Galaxy S GT-I9000(帶有怪異的旋鈕)和HTC One S(帶正常旋鈕)的屏幕截圖。

Weird

Normal

更改安卓重力沒有幫助。任何想法可能會造成這種情況?謝謝。

回答

2

而不是

android:layout_width="wrap_content" 

嘗試給它一個固定長度:

android:layout_width="100dp" 

android:layout_width="wrap_content" 
android:minWidth="100dp" 

,看看它是如何去。