图标调整大小搞砸了?

时间:2011-10-06 14:38:57

标签: android android-layout

所以我一直在尝试解决图标显示不正确的问题,但没有成功。

在每个屏幕上都会发生什么,在模拟器上我尝试了所有尺寸和分辨率,有或没有缩放,以下情况发生..

http://imageshack.us/photo/my-images/830/messedupz.png/

热门图片是来自模拟器的屏幕截图,但这也发生在设备上。我也在xperia手机上尝试了我的应用程序,只是为了看看这是否是模拟器,但似乎不是。我使用这个图标/ png-image作为togglebutton。我为每个dpi创建了png(ldpi,mdpi,hdpi)。

任何想法如何解决这个问题?

谢谢!

P.S。这是要求

的布局代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="TEST TEST TEST TEST"
        android:gravity="center_horizontal"
        />
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="horizontal"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:padding="5dp"
        >
        <ImageButton
            android:background="@drawable/icon"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:id="@+id/btn1">
        </ImageButton>
        <TextView  
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content"
            android:padding="5dp"
            android:text="@string/hello"
        />
    </LinearLayout>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="horizontal"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:padding="5dp"
        >
        <ImageButton
            android:id="@+id/btn2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/icon">
        </ImageButton>
        <TextView  
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content"
            android:padding="5dp"
            android:text="@string/hello"
            />
    </LinearLayout>

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:padding="5dp"
        android:orientation="horizontal">
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_weight="1"
            android:gravity="center_horizontal"
            android:layout_height="wrap_content">
            <ToggleButton
                android:id="@+id/btn3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/gpsonoff">
            </ToggleButton>
        </LinearLayout>
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_weight="1"
            android:gravity="center_horizontal"
            android:layout_height="wrap_content">
            <ToggleButton
                android:id="@+id/btn4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/flashonoff">
            </ToggleButton>
        </LinearLayout>
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_weight="1"
            android:gravity="center_horizontal"
            android:layout_height="wrap_content">
            <ImageButton
                android:id="@+id/btn5"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/icon">
            </ImageButton>
        </LinearLayout>
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_weight="1"
            android:gravity="center_horizontal"
            android:layout_height="wrap_content">
            <ToggleButton
                android:id="@+id/btn6"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/noteonoff">
            </ToggleButton>
        </LinearLayout>
    </LinearLayout>

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_width="fill_parent"
        android:paddingLeft="12dp"
        android:paddingRight="12dp"
        android:paddingTop="4dp"
        android:layout_marginTop="8dp"
        android:orientation="horizontal">

       <kankan.wheel.widget.WheelView android:id="@+id/wheel1"
            android:layout_height="fill_parent"
            android:layout_width="wrap_content"
            android:layout_weight="1"
            android:layout_gravity="center_vertical"/>

        <kankan.wheel.widget.WheelView android:id="@+id/wheel2"
            android:layout_height="fill_parent"
            android:layout_width="wrap_content"
            android:layout_gravity="center_vertical"
            android:layout_weight="1"
            android:layout_marginLeft="10dp"/>
    </LinearLayout>
    <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="bottom"
    android:stretchColumns="1">
    <TableRow>
        <LinearLayout
            android:layout_width="0dp"
            android:layout_weight="1"
            android:gravity="left"
            android:paddingLeft="15dp"
            android:layout_height="wrap_content">
            <ImageButton
                android:id="@+id/btn7"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/icon">
            </ImageButton>
        </LinearLayout>
        <LinearLayout
            android:layout_width="0dp"
            android:layout_weight="1"
            android:gravity="right"
            android:paddingRight="15dp"
            android:layout_height="wrap_content">
            <ImageButton
                android:id="@+id/btn8"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/icon">
            </ImageButton>
        </LinearLayout>
    </TableRow>
</TableLayout>
</LinearLayout>

0 个答案:

没有答案