1

当我在 Android 版本 >=4 中运行我的 android 应用程序时,我得到了这个(我没有在 android 版本 3 中测试):
在此处输入图像描述

在 android 版本 2.3 中运行相同的应用程序时,我得到了一些不同的输出:
在此处输入图像描述

您可以在第二个屏幕截图中看到关于按钮的图像不可见。但是当我尝试在 2.3 上多次运行相同的应用程序时,有时我会看到图像可见。
这是我的代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<include layout="@layout/actionbar_with_right_button" />

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:scrollbars="none" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:gravity="center"
        android:orientation="vertical" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:clickable="true"
            android:drawablePadding="@dimen/settings_text_view_drawable_padding"
            android:drawableTop="@drawable/snooze_button"
            android:gravity="center"
            android:onClick="showRemainderSnoozeSettings"
            android:padding="@dimen/settings_text_view_padding"
            android:text="@string/snooze" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:clickable="true"
            android:drawablePadding="@dimen/settings_text_view_drawable_padding"
            android:drawableTop="@drawable/help_button"
            android:gravity="center"
            android:onClick="showFaq"
            android:padding="@dimen/settings_text_view_padding"
            android:text="@string/help" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:clickable="true"
            android:drawablePadding="@dimen/settings_text_view_drawable_padding"
            android:drawableTop="@drawable/about_button"
            android:gravity="center"
            android:onClick="showAbout"
            android:padding="@dimen/settings_text_view_padding"
            android:text="@string/about" />
    </LinearLayout>
</ScrollView>

我不明白为什么会这样。
谁能帮我解决这个问题。
编辑: 当我将 android:drawableTop="@drawable/about_button" 更改为 about 的 android:drawableTop="@drawable/help_button" 时,我忘记提及另一件重要的事情TextView。它工作得很好。所以这可能是我的 about_button 图像的问题。所以我再次重新创建了关于图像并放入所有可绘制文件夹。即使在那之后,我也没有得到任何 +ve 结果。这个问题只在2.3以下。
谢谢

4

1 回答 1

2

愿这对您有所帮助:

似乎这是 android 的一个错误,有时第一个图像drawable folder不会显示.....

我有一个类似的错误 - 无论在什么 ImageView 中,都没有显示特定的可绘制对象。所以我添加了一个名为的虚拟图像aaaa.png并且drawable folder问题解决了......

于 2013-08-16T08:58:17.393 回答