我试图通过将 TextViews 放置在单行 LinearLayouts 行中来在屏幕上显示一堆文本。每个单词都存储在自己单独的 TextView 中,我希望能够在单个 LinearLayout 行上放置尽可能多的 TextView,并检测何时用完水平空间,以便移动到下一行。
我面临的问题是,我似乎无法在创建显示时找到一种方法来测量不断变化的布局大小,因为我无法getWidth()
在父布局上使用参考宽度,即使在我添加了TextViews,我似乎无法控制宽度。
我们之前有一个工作版本,但它使用基于 TextView 中固定大小的字符数的硬编码数字来完成所有工作。我正在尝试扩展应用程序以使用所有文本和屏幕尺寸。如果这需要彻底检修,我理解 - 我只是希望能够用不定行数的文本填满屏幕。
一个明显的解决方案是将所有文本放在一个 TextView 中,但是我们需要能够通过显示的 TextView 访问每个 Word/Pontuation 对象及其属性。
// layout_row is the current LinearLayout row I'm adding my TextViews to
// layout is the LinearLayout parent of all layout_rows
// text.text_content is a linked list of Word and Ponctuation objects
// each Word and Ponctuation object has a TextView attribute called view
private void display_views() {
if (text != null)
{
boolean prochainLigneSuivante; // if new line is to follow
int widthSoFar = 0;
int layoutWidth = layout_row.getWidth();
for (Object o : text.text_content) {
if (o instanceof Word ) {
Word w = (Word) o;
Object next = text.next(o);
if (noNeedForSpace(w)) {
// by default all TextViews have
// right padding to simulate spaces
w.view.setPadding(0, 0, 0, 0);
}
layout_row.addView(w.view);
widthSoFar += w.view.getWidth();
// Am I out of space?
prochainLigneSuivante = widthSoFar >= layoutWidth;
if(prochainLigneSuivante) {
layout_row.removeView(w.view);
widthSoFar = 0;
layout_row = new LinearLayout(context);
layout_row.setOrientation(LinearLayout.HORIZONTAL);
layout_row.addView(w.view);
layout_row.setBackgroundColor(Color.BLACK);
layout_row.setLayoutParams(new
LayoutParams(LayoutParams.WRAP_CONTENT,
LayoutParams.MATCH_PARENT));
layout.addView(layout_row);
}
}
else if (o instanceof Ponctuation) {
Ponctuation p = (Ponctuation) o;
if (p.text.contains("CR")) {
layout_row = new LinearLayout(context);
layout_row.setOrientation(LinearLayout.HORIZONTAL);
layout_row.setLayoutParams(new
LayoutParams(LayoutParams.WRAP_CONTENT,
LayoutParams.MATCH_PARENT));
widthSoFar = 0;
layout.addView(layout_row);
}
else {
if (p.view.getText().equals(" "))
p.view.setPadding(0, 0, 0, 0);
layout_row.addView(p.view);
if(!p.view.getText().equals(""))
widthSoFar += p.view.getWidth();
}
}
}
}
else {
Log.e("Text", "text est nul");
}
scroll.refreshDrawableState();
transition.startTransition(0);
}