0

スピナーアイテムのカスタムルックを行いました。しかしその後、まだ白い枠(ボタンの周り)があることに気が付きました。ボタン画像が「短い」pic#2 でより見やすくなっています。白いフレームを除外する(表示しない)方法を知っていますか?

使用したテーマ:

    <?xml version="1.0" encoding="utf-8"?>
    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/FrameLayout1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="center"    
        android:background="@drawable/spinner_select" >

    <TextView
        android:id="@+id/spinnertext"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center" />

    </FrameLayout>

http://imageshack.us/photo/my-images/402/72449930.png/ ここに画像の説明を入力

4

1 に答える 1

0

すべてのボタンを次のように残すことができます:android:layout_width="fill_parent"を使用するandroid:orientation="vertical"RelativeLayout、ボタンは常に大きく/大きくなり、その中のテキストに依存しません。

于 2012-09-21T20:30:44.823 に答える