我动态地在android中声明了一个带有一些宽度和高度的按钮作为wrap_content。 我希望文本可以在按钮内滚动,而不是调整到向下,这会增加按钮的高度。任何人都可以帮助解决这个问题。
在此先感谢,
代码示例:
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
110,LinearLayout.LayoutParams.WRAP_CONTENT);
Button newButton = new Button(ctx);
newButton.setLayoutParams(params);
newButton.setText("some nameeeeeeeeeeeee");
newButton.setScroller(new Scroller(getActivity()));
newButton.setVerticalScrollBarEnabled(true);
newButton.setMovementMethod(new ScrollingMovementMethod());
答案 0 :(得分:1)
Button btn = new Button(context);
btn.setScroller(new Scroller(context));
btn.setVerticalScrollBarEnabled(true);
btn.setMovementMethod(new ScrollingMovementMethod());
希望它必须有帮助! :)
答案 1 :(得分:0)
此属性可用于水平滚动文本:
android:scrollHorizontally