Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
关于这个问题,我已经研究了一段时间。在我的布局中,我有一个 textview。如何使我的 textview 宽度的宽度为屏幕物理宽度的一半?我可以直接在 xml 布局中执行,还是应该在 java 代码中有一个函数,它获取物理大小并将 textview 的大小设置为一半?我不在乎分辨率。
提前致谢!
您应该为您的 TextView 使用 layout_wheight 属性:
Android:layout_width="0dp" Android:layout_weight=1
在要放置在 TextView 一侧的布局上使用相同的属性(和相同的权重),它们将具有相同的大小 = 物理屏幕的 1/2。