gpt4 book ai didi

android - 为什么 drawableStart 的行为与 Android 文档不匹配?

转载 作者:塔克拉玛干 更新时间:2023-11-02 18:51:05 25 4
gpt4 key购买 nike

我创建了一个非常基本的布局:

<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>

根据 the documentation for drawableStart ,

"The drawable to be drawn to the start of the text."

但是,在我的 Android 4.0.4 手机上运行时,我看到的是:

enter image description here

为什么图标和文字之间有这么大的差距?根据this answer ,

"With Android 4.0 (API level 14) you can use android:drawableStart attribute to place a drawable at the start of the text."

但这不是我观察到的行为。为什么该属性不起作用?

最佳答案

很多关于开始和结束的误解。
布局 xml 中的 StartEnd 可替代 leftright 以匹配布局方向(LTR 或 RTL)。

所以,当文档说:

"The drawable to be drawn to the start of the text."

你必须阅读:

"The drawable to be drawn to the beginning of the view according to layout direction"

关于android - 为什么 drawableStart 的行为与 Android 文档不匹配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15350990/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com