我有2个布局。我需要设置一个标志,并根据标志值,我需要在一个布局中显示我的消息。如果我发送消息我需要在a.xml布局中显示,如果我收到消息,我需要在另一个布局b.xml中显示。示例代码如下。我怎么能实现它。
if (position == 0) {
row = inflater.inflate(R.layout.list_row_layout_even, parent,
false);
TextView textLabel = (TextView) row.findViewById(R.id.text);
textLabel.setText(datav);
} else {
row = inflater.inflate(R.layout.list_row_layout_odd, parent,
false);
TextView textLabel = (TextView) row.findViewById(R.id.text);
textLabel.setText(datav);
}
感谢。