android:在布局中添加水平线使其为空
Posted
技术标签:
【中文标题】android:在布局中添加水平线使其为空【英文标题】:android: adding horizontal line to layout makes it empty 【发布时间】:2011-06-22 00:21:58 【问题描述】:将它添加到我的布局后,我将它膨胀并添加到另一个视图后会返回一个空布局
<View
android:layout_
android:layout_
android:background="#e0e0e0"/>
我是这样充气的
LayoutInflater vi = (LayoutInflater)getBaseContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = vi.inflate(R.layout.stoplistitem, null);
if(dt != null && stop.getDescription() != null)
dt.setText(stop.getDescription());
if(st != null && stop.getStreet() != null)
st.setText(stop.getStreet());
if(mt != null && stop.getMunicipal() != null)
mt.setText(stop.getMunicipal());
if(idt != null && stop.getId() != null)
idt.setText(stop.getId().toString());
//edit 可以看到视图,但是没有内容
【问题讨论】:
您发布的代码仍然不足以理解您如何将行视频添加到主布局。 它只是在根 LinearLayout 后跟 4 个 EditTexts 【参考方案1】:通过使用inflate(int resource, ViewGroup root, boolean attachToRoot)
和attachToRoot = true,在膨胀时将此视图附加到ViewGroup,root 是您要在其上膨胀的组件
【讨论】:
所以根必须是我想把我的新视图放在正确的视图?以上是关于android:在布局中添加水平线使其为空的主要内容,如果未能解决你的问题,请参考以下文章
使用 Gson/Jackson 和 Spring Boot 重新创建没有字段属性的 DTO 类,而不是使其为空