RemoteView和错误的layout_weight

时间:2012-09-10 16:03:30

标签: android android-layout android-linearlayout android-appwidget remoteview

我的layout_weight和appWidget的remoteView有问题。

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

使用这个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上仅用于特定的切换。现在我有了这个: Now

如果我在我的活动中这样做,我的工作是: What i want

那我该如何解决呢......

0 个答案:

没有答案