我以编程方式在 LinearLayout 中创建了一个 TextView:
LinearLayout filmTitleContainer = new LinearLayout(ctx);
TextView filmName = new TextView(ctx);
filmName.setBackgroundColor(Color.rgb(Color.YELLOW));
filmName.setText(this.screeningTime+" "+this.name);
文本视图被缩小:
如何将文本设置为占据屏幕的整个宽度?当我使用 XML 布局文件时,我会设置android:layout_width="match_parent"
. 什么是等效的 Java 代码?