2013-01-07 66 views
3

所以在附加的屏幕快照和代碼示例中,您可以看到我的自定義微調。正如你所看到的,無論我嘗試做什麼,我的文本都會被切斷。九個補丁圖像也正確設置了文本填充。我有權剛纔的一切和我完全茫然......自定義微調TextView正在被切斷

定製微調

<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/spinner" 
android:textColor="#555" 
android:textSize="22sp" 
android:textStyle="bold" 
android:typeface="normal" 
android:layout_width="wrap_content" 
android:layout_height="40sp" 
android:gravity="center_vertical|left" 
android:singleLine="true" /> 

實現自定義微調

<Spinner 
    android:id="@+id/spinner_both20" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_alignBottom="@+id/b_both20" 
    android:layout_alignTop="@+id/b_both20" 
    android:layout_marginLeft="4sp" 
    android:layout_marginRight="5sp" 
    android:layout_toRightOf="@+id/b_both20" 
    android:background="@drawable/buttons" 
    android:padding="20sp" /> 

的Java

ArrayAdapter<CharSequence> aBoth = ArrayAdapter 
      .createFromResource(getActivity().getApplicationContext(), 
      R.array.d20both, R.layout.spinner_settings) 

我超級沮喪地花了這麼多時間在這麼簡單的事情上。任何幫助將搖滾!

enter image description here

+0

如果刪除微調器中的填充,會發生什麼情況? – dymmeh

+0

那麼花了幾個小時看着這個之後,我從來沒有注意到有這個填充線......我覺得很蠢,並且非常感謝你的幫助:S – MinceMan

+0

有時它只需要第二組眼睛。很高興幫助:) – dymmeh

回答

1

填充將削減切成你內心的文字。