2

我的 appWidget 的 layout_weight 和 remoteView 有问题。

我所有的切换都是这样的 我的切换

有了这个 xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/btn"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="@drawable/appwidget_button_center"
android:gravity="bottom"
android:orientation="vertical"
android:visibility="visible" >

    <ImageView
            android:id="@+id/toggle_img"
            android:layout_width="fill_parent"
            android:layout_height="0dip"
            android:layout_weight="2"
            android:scaleType="center" />
    
         <TextView
            android:id="@+id/toggle_txt"
            style="@style/TextSmallButton" 
            android:layout_height="0dip"
            android:layout_weight="1"
            />
        <ImageView
            android:id="@+id/toggle_ind"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:scaleType="fitXY"
            android:src="@drawable/b7_on" />
    </LinearLayout>

现在我希望我的切换之一采用默认大小的两倍大小,所以我将 layout_weight = 2 放在我的 xml 上,仅用于特定切换。现在我有了这个: 现在

如果我在我的活动中这样做,那么我就有: 我想要的是

那么请问我该如何解决这个问题...

4

0 回答 0