作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想一次又一次地重用现有布局,而不是创建/编写新的 xml。目前,我有这样的。
我想以编程方式而不是用 xml 编写(可能是我想在 Activity 中编写)。
我可以知道该怎么做吗?另外,另一个问题是,如果我那样重用,“id”将是相同的。如果是这样,我该如何设置文本?
最佳答案
将一个LinearLayout 添加到您的布局中,然后在代码中多次inflate header_description 布局并将其添加到LinearLayout 中。
将布局更改为与此类似:
<include layout="@layout/header_list_image"/>
<LinearLayout
android:layout_id="@+id/description_layout"
android:layout_width="match_parent"
android:layout_height="wrap_contents"
android:orientation="vertical" >
<include layout="@layout/header_url"/>
<include layout="@layout/row_listing_like_comment_share"/>
<include layout="@layout/header_comment_separator"/>
在代码中,使用 id 找到 LinearLayout,一次一个地扩充描述布局,并将它们添加到您的 onCreate() 函数中:
LinearLayout layout = (LinearLayout)findViewById(R.id.description_layout);
LayoutInflater inflater = getLayoutInflater();
// add description layouts:
for(int i = 0; i < count; i++)
{
// inflate the header description layout and add it to the linear layout:
View descriptionLayout = inflater.inflate(R.layout.header_description, null, false);
layout.addView(descriptionLayout);
// you can set text here too:
TextView textView = descriptionLayout.findViewById(R.id.text_view);
textView.setText("some text");
}
Also, another problem is that if I reuse like that, "id" will be same. If so, how can I set text?
在展开的布局上调用 findViewById(),例如:
descriptionLayout.findViewById(R.id.text_view);
不是这样的:
findViewById(R.id.text_view);
关于android - 以编程方式为 android 布局充气,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28422546/
在 Rails 中,您可以使用嵌套路由为 has_one 和 has_many 关系创建 RESTful 路由。可以在 Rails Guides 上找到示例 请问有没有什么好的方法可以为habtm关系
我是一名优秀的程序员,十分优秀!