-1

将其添加到我的布局后,我将其膨胀并将其添加到另一个视图后会返回一个空布局

  <View 
  android:layout_width="fill_parent"
  android:layout_height="1px" 
  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 可以看到视图,但是没有内容

4

1 回答 1

0

在膨胀时将此视图附加到 ViewGroup 并使用inflate(int resource, ViewGroup root, boolean attachToRoot)attachToRoot = true,root 是您要在其上膨胀的组件

于 2011-06-22T00:46:14.577 回答