Android Toggle Button扭曲视图

时间:2011-07-05 13:37:40

标签: android togglebutton

我正在构建一个应用程序。目前我正在构建测试用户界面,以便展示应用程序的功能。我遇到了一个问题,我希望以横向方式显示三个ToggleButtons。所以我使用线性视图做到了这一点。按钮如何扭曲看起来。这是失真的图片:

app layout

private ToggleButton wifiTB;
private ToggleButton gpsTB;
private ToggleButton bluetoothTB;

在onCreate()中调用

wifiTB = (ToggleButton)this.findViewById(R.id.WifiTB);
gpsTB = (ToggleButton)this.findViewById(R.id.GPSTB);
bluetoothTB = (ToggleButton)this.findViewById(R.id.bluetoothTB);

布局xml:

<LinearLayout android:id="@+id/linearLayout1"
    android:layout_height="wrap_content" android:layout_width="match_parent"
    android:gravity="center">
    <ToggleButton android:id="@+id/WifiTB" android:textOn="Wifi"
        android:textOff="Wifi" android:layout_weight="1"
        android:layout_width="wrap_content" android:layout_height="wrap_content"></ToggleButton>
    <ToggleButton android:layout_width="wrap_content"
        android:id="@+id/GPSTB" android:textOn="GPS" android:textOff="GPS"
        android:layout_weight="1" android:layout_height="wrap_content"></ToggleButton>
    <ToggleButton android:layout_height="wrap_content"
        android:layout_width="wrap_content" android:id="@+id/bluetoothTB"
        android:textOn="Bluetooth" android:textOff="Bluetooth"
        android:layout_weight="1"></ToggleButton>
</LinearLayout>

注意: - 我尝试删除线性视图的按钮,然后在关闭按钮下面替换它。 - 我尝试将它放在RelativeLayout而不是LinearLayout中。 - 播放布局/按钮的宽度和高度。

0 个答案:

没有答案