- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的应用程序中的一个 fragment 有一个小问题,该 fragment 显示了有关 Google Place 的详细信息。问题在于显示其他用户的评论。
如图所示,评论 TextView 中的文本未完全显示。有没有办法让 textview 换行?
问题图片: http://postimg.org/image/84frbxd23/
我正在通过代码动态添加 TableRow 和 TextView。我尝试了以下操作:
这是我的布局:
<TableLayout
android:id="@+id/reviews"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_below="@+id/openhours"
android:layout_marginTop="20dp"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true">
</TableLayout>
下面是添加行和 TextView 的代码:
//Dinamically create table
TableLayout table = (TableLayout)rootView.findViewById(R.id.reviews);
TableRow tr_head = new TableRow(rootView.getContext());
tr_head.setBackgroundColor(Color.GRAY);
tr_head.setLayoutParams(new TableLayout.LayoutParams(
TableLayout.LayoutParams.FILL_PARENT,
TableLayout.LayoutParams.WRAP_CONTENT));
TextView label_author = new TextView(rootView.getContext());
label_author.setText("Author");
label_author.setTextColor(Color.WHITE);
label_author.setPadding(5, 5, 5, 5);
tr_head.addView(label_author);// add the column to the table row here
TextView label_comment = new TextView(rootView.getContext());
label_comment.setText("Comment"); // set the text for the header
label_comment.setTextColor(Color.WHITE); // set the color
label_comment.setPadding(5, 5, 5, 5); // set the padding (if required)
tr_head.addView(label_comment); // add the column to the table row here
table.addView(tr_head, new TableLayout.LayoutParams(
TableLayout.LayoutParams.FILL_PARENT,
TableLayout.LayoutParams.WRAP_CONTENT));
//if it has reviews display them
if(currentP.hasReviews()) {
for (Review r : currentP.getReviews()) {
TableRow tr = new TableRow(rootView.getContext());
tr.setLayoutParams(new TableLayout.LayoutParams(
TableLayout.LayoutParams.FILL_PARENT,
TableLayout.LayoutParams.WRAP_CONTENT));
//Create two columns to add as table data
// Create a TextView to add date
TextView author = new TextView(rootView.getContext());
author.setText(r.getAuthor());
author.setPadding(2, 0, 5, 0);
author.setTextColor(Color.BLACK);
author.setHorizontalScrollBarEnabled(false);
tr.addView(author);
TextView comment = new TextView(rootView.getContext());
comment.setPadding(5, 0, 5, 0);
comment.setText(r.getReview());
comment.setTextColor(Color.BLACK);
comment.setEllipsize(TextUtils.TruncateAt.END);
comment.setMaxLines(10);
comment.setId(r.getId());
tr.addView(comment);
// finally add this to the table row
table.addView(tr, new TableLayout.LayoutParams(
TableLayout.LayoutParams.FILL_PARENT,
TableLayout.LayoutParams.WRAP_CONTENT));
}
最佳答案
我会将 author TextView 的宽度设置为常量,这样它就不会扩展太多并缩小 Comment TextView。对于 Comment TextView 设置给定的布局参数,以便它可以垂直扩展并且不会被截断。
// Create a TextView to add date
TextView author = new TextView(this);
author.setText(authorName);
author.setPadding(2, 0, 5, 0);
author.setTextColor(Color.BLACK);
author.setHorizontalScrollBarEnabled(false);
author.setWidth(150); // good idea to set width for author name so that its fixed
tr.addView(author);
TextView comment = new TextView(this);
comment.setPadding(5, 0, 5, 0);
comment.setText(bigComment);
comment.setTextColor(Color.BLACK);
comment.setMaxLines(10);
// Provide this parameter so that the whole text can be seen with no cutoff
comment.setLayoutParams(new TableRow.LayoutParams(TableRow.LayoutParams.FILL_PARENT,
TableRow.LayoutParams.WRAP_CONTENT,1.0f));
tr.addView(comment);
关于java - TableLayout 和 TableRow 中的 TextView 不换行文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27744458/
我有2000条记录,我想在tablelayout中显示产品列表。第一次加载需要显示50条记录,其余记录需要分页显示。 在 onCreate() 中我完成了表格布局:它的动态表格内容 tl = (
已编辑:我自己找到了解决方案。谢谢! 我想为 Android 应用程序创建以下屏幕: 现在我有这个: 使用此代码:
我正在尝试做我的第一个复杂的 GUI,但现在我无法解决这个问题。 前两行的第一列只需要包含标签,而前两行的第二列必须占据剩余空间。 在此快照中,我注意到的问题是第一列比我想要的要大。 这是实现该布局的
当仅添加第一行时,一切顺利,但在添加第二行后,它失败了。 pupils=db.getAllPupilsPupil(); events=db.getAllEvents(); TableLayout ta
我想制作一款类似 Jeopardy 的游戏,为了实现这一目标,我决定使用 TableLayout 布局。这就是我的代码现在的样子: import javax.swing.JButton; import
我在 ListView 中使用 TableLayout。我提供的数据本质上是表格形式的,TableLayout 似乎是确保列按需要排列的好方法。这种方法在大多数情况下都很有效 - 见下文。 所需 Vi
我想发布一张图片来描述这个问题,但显然我在 stackoverflow 方面的声誉还不够,所以我将尝试描述我想要完成的事情。 我有一个包含 5 列的 TableLayout。它们由公司名称、职位编号、
我想实现一个带分页的 TableLayout,在第 1 页显示 10 条记录,然后在第 2 页显示下 10 条记录,依此类推...我正在使用 Table Layout但我没有得到所需的结果。使用本教程
我正在构建一个吉他应用程序。屏幕右侧是指板,左侧是几个按钮。 我用一个充满按钮的表格布局构建了吉他琴颈。没什么特别的。这工作得很好。不过我也想支持平板电脑。 吉他琴颈的宽度必须与每个设备保持一致,并且
在我现有的代码中,我有三个按钮,它们在同一行上水平对齐,但是,我希望这些按钮出现在不同的行上。 现有布局... [-----] [-----] [------] 追求布局... [------] [-
我的表格布局有点问题。 我有两列 专栏 1 |第 2 列 column1 内容是静态的,表示一个属性,例如“位置”,“产品”。第二列使用适配器填充。 我的问题是 TextView 打断了 column
我的目标是从数据库中获取数据,然后在我的应用程序中将其显示为表格。 这是我的代码: public void updateLastExpenses(){ Cursor c = Expense.
我一直在尝试基于 Google Play 商店中名为 Timetable 的应用程序创建一个应用程序。在过去的几天里,我一直在努力解决一个看似简单的问题。基本上,我使用 TableLayout 创建了
我正在努力寻找一种在 TableLayout 中添加和删除可点击按钮的好方法。 所以我目前有一个包含整数和对象的 HashMap。它也随着用户的需要而更新。当用户按下“添加项目”按钮时,我希望它完成向
请参阅下面的屏幕截图,了解平板电脑和手机上的不同结果。 Activity .xml
我有一个包含三列的 TableLayout,代表一个带有 的表单 必填符号 |标签 |输入框。 我希望输入字段填充屏幕右侧标签的剩余宽度。到目前为止,我找到的唯一解决方案是这个
我有一个类,其内容设置为具有几个按钮和一个 TableLayout 的布局。 制作 TableLayout 的真正工作是在一个单独的静态助手类中,它有一个返回所需表格的方法。 但是,表格没有显示。我错
我想在线程中创建一个动态表格布局(因为我有一个巨大的表格并且加载时间很长)。它似乎一直工作到第四行,但在出现错误之后。 我找不到问题出在哪里。在此 java 代码中,已简化表布局以解决问题。 我的ja
大家早上好 我在学习 Android 的道路上还面临着另一个问题。我用 CSV 文件的内容制作了一个动态 TableLayout。我需要当我点击/触摸表格中的一行时,颜色应该改变,然后点击一个按钮获取
是否可以并排显示两个 TableLayout(在 RelativeLayout 中)以使两个表格具有相同的宽度?我只是不知道该怎么做。我已经尝试过将 android:stretchColumns="*
我是一名优秀的程序员,十分优秀!