whatsApp喜欢配置布局

时间:2015-06-26 08:11:53

标签: android android-layout android-listview

我正在尝试实现类似whatsApp中的配置布局。

布局看起来像列表视图,但每行可以有不同的布局和onclick事件。

使用listview似乎不是正确的选择,所以我尝试使用垂直linearlayout和几个textview模仿布局,但结果看起来并不完全正确。

我错过了任何默认布局吗?或任何建议表示赞赏。感谢。

Listview like layout enter image description here

当该行点击enter image description here

1 个答案:

答案 0 :(得分:0)

看看这个Inflating custom View in ListView according to position 你可以看到,你可以使用布局充气器

if(position > 10) {
         convertView = mInflater.inflate(R.layout.custom, null);
         Log.i(TAG, "Inflated custom layout");
 }

此外,您可以使用菜单块对不同的片段进行充气,并在片段中描述点击,检查等的逻辑。