我正在TextView
创建一个GridLayout
,其下面有一个可绘制的。
我想将drawable带到TextView
的中间;我试过了
setCompoundDrawablePadding(-75)
它只会改变文本的位置。
当前代码:
TextView secondItem = new TextView(this);
GridLayout.LayoutParams second = new GridLayout.LayoutParams(row2, col1);
second.width = halfOfScreenWidth;
second.height = (int) (quarterScreenWidth * 1.5);
secondItem.setLayoutParams(second);
secondItem.setBackgroundResource(R.color.MenuSecond);
secondItem.setCompoundDrawablesRelativeWithIntrinsicBounds(0, 0, 0, R.drawable.ic_action_new);
secondItem.setText("Text");
secondItem.setCompoundDrawablePadding(-180);
secondItem.setGravity(Gravity.CENTER);
secondItem.setTextAppearance(this, android.R.style.TextAppearance_Large_Inverse);
gridLayout.addView(secondItem, second);
如何将文字和drawable设置为TextView
?
答案 0 :(得分:105)
您需要合并drawablePadding
和padding
才能获得所需的结果。
答案 1 :(得分:10)
在XML中:
android:drawablePadding = paddingValue
或
<强>编程:强>
TextView txt;
txt.setCompoundDrawablePadding(paddingValue)
android:drawablePadding 是为drawable图标添加填充的最简单方法,但是你不能给出特定的一面填充,如 paddingRight 或 paddingLeft 可绘制图标。这给了drawable两边的填充。
答案 2 :(得分:1)
<Button
android:id="@+id/otherapps"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/btn_background"
android:text="@string/other_apps"
android:layout_weight="1"
android:fontFamily="cursive"
android:layout_marginBottom="10dp"
android:drawableLeft="@drawable/ic_more"
android:paddingLeft="8dp" //for drawable padding to the left
android:textColor="@android:color/holo_red_light" />`enter code here`
答案 3 :(得分:0)
您可以使用图层列表。
在:
为shape创建xml - shape_rectangle.xml:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:right="5dp">
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/my_color" />
<size
android:width="5dp"
android:height="5dp" />
</shape>
</item>
</layer-list>
后:
在xml中,有类似android:right
的内容。您还可以添加top
,left
,bottom
。这样你可以给出例如:左右填充绘图而不调整textView的总高度。