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 类,而不是使其为空

android 控件xml属性

为啥我不能在 Android 的水平线性布局中添加超过 2 个元素?

Android六大布局的介绍

Android开发点滴 - 如何使按钮水平垂直居中且始终占据屏幕宽度一半