方法TextView.getCompoundDrawablesRelative()
返回包含start,top,end和bottom复合drawable的Drawables
数组。到目前为止,我无法在Android库中找到任何常量,这些常量定义了存储每个复合drawable的数组中的索引。我从试验和错误中知道数组的索引1包含顶部drawable。
在Android库中是否存在我可能忽略的常量,这些常量定义了TextView.getCompoundDrawablesRelative()
返回的数组中的索引,其中每个复合drawable位于何处?如果是这样,他们是什么?
答案 0 :(得分:1)
不,它们与TextView.setCompoundDrawablesWithIntrinsicBounds(以及其他类似方法)的顺序相同:
索引0:左
索引1:顶部
索引2:正确
索引3:底部