我在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());