3

我在线性布局中有两个 TextView。第一个Textview,称为pen_name,有一个伴随的图像;第二个 TextView 只是文本。在图形布局上,一切都很好。但是当我在真实设备上运行应用程序时,第一个 TextView 的图像而不是文本显示。第二个 TextView 工作正常。这是代码。

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/pen_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="3dp"
            android:drawableLeft="@drawable/a_pen"
            android:drawablePadding="3dp"
            android:gravity="center_vertical"
            android:text="my_pseudonym"
            android:textColor="#1083f0"
            android:textSize="12sp"
            android:textStyle="bold" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="3dp"
            android:layout_marginLeft="2dp"
            android:gravity="center_vertical"
            android:text="Writer"
            android:textColor="#1083f0"
            android:textSize="12sp" />
    </LinearLayout>
4

1 回答 1

0

我在我的 Galaxy S3 上测试了你的代码,运行良好,我可以看到文本。

屏幕上可绘制对象的大小取决于在将复合可绘制对象与文本视图一起使用时原始文件中图像的大小,这意味着您无法真正控制可绘制对象的大小,如果它太宽,它可能会被掩盖文本。

您可以尝试使用较小的图像或为较小的屏幕尺寸提供较小的图像。

于 2013-08-01T09:39:51.893 回答