我创建了一个非常基本的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button"
android:drawableStart="@drawable/ic_launcher" />
</LinearLayout>
</RelativeLayout>
“要绘制到文本开头的drawable。”
但是,在我的 Android 4.0.4 手机上运行时,我看到的是:
为什么图标和文字之间有这么大的差距?根据这个答案,
“使用 Android 4.0(API 级别 14),您可以使用 android:drawableStart 属性在文本开头放置一个可绘制对象。”
但这不是我观察到的行为。为什么属性不起作用?