2012-01-16 42 views
4

如何實現類似於Gmail應用程序對話視圖的視圖?可擴展列表?或者還有其他已知的方法嗎?gmail android app like conversations view

根據我發現的ExpandableListView是我可以使用的最接近的東西,但是一旦項目被點擊後,人們會如何更改佈局?

public View getGroupView(int groupPosition, boolean isExpanded, View convertView, 
      ViewGroup parent) { 
     TextView textView = getGenericView(); 
     textView.setText(getGroup(groupPosition).toString()); 
     return textView; 
    } 

這是要一次設置視圖,並用它做...

回答