добавление этого в мой макет возвращает пустой макет после того, как я его надуваю и добавляю в другой вид
<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 Я вижу вид, но нет содержимого