前5个按钮以编程方式添加,后一个通过XML添加。两种方式我都使用相同的参数。为什么动态添加的按钮文本被截断?
程序化:
Button b = new Button(getActivity());
b.setText(text);
b.setAllCaps(false);
b.setBackgroundResource(R.drawable.button_tag_rect);
b.setTextColor(getResources().getColor(R.color.colorWhiteText));
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT,
dpToPx(28));
int marginInPx = dpToPx(2);
params.setMargins(marginInPx, marginInPx, marginInPx, marginInPx);
tagCloudTwitter.addView(b, tagCloudTwitter.getChildCount()-1, params);
XML:
<Button
android:layout_width="wrap_content"
android:layout_height="28dp"
android:layout_margin="2dp"
android:textAllCaps="false"
android:background="@drawable/button_tag_rect"
android:textColor="@color/colorWhiteText"
android:text="test"/>
编辑:已解决!见下面的答案。
答案 0 :(得分:1)
很有趣的是,帮助设置了“虚拟”填充:
b.setPadding(1,1,1,1);
¯\ _(ツ)_ /¯
答案 1 :(得分:0)
尝试设置按钮的高度和宽度;
b.setWidth(10);
b.setHeight(100);