通过小部件以编程方式设置TextView高度

问题描述 投票:0回答:1

我正在为Android编写一个小部件。为此,我试图以编程方式设置几个TextViews的高度。现在,我知道如何从Activity中以编程方式设置TextView的高度。我读过你可以这样做:

LayoutParams layoutParams = textView.getLayoutParams();
layoutParams.height = 70;
textView.setLayoutParams(layoutParams);

但是,如何从Widget内以编程方式设置TextView的高度?

android widget textview height
1个回答
-1
投票

从小部件内部,您是指TextView本身,然后使用以下方法:

textView.setHeight(70)


-1
投票

从小部件内部,您是指TextView本身,然后使用以下方法:

textView.setHeight(70)

© www.soinside.com 2019 - 2024. All rights reserved.