单击时可扩展的listview android更改布局

Posted

技术标签:

【中文标题】单击时可扩展的listview android更改布局【英文标题】:expandable listview android change layout on click 【发布时间】:2014-01-06 19:19:37 【问题描述】:

我有一个 android 项目,我必须在其中更改最后一个扩展组(将折叠)和单击的组的布局。我有 onGroupClick 方法:

   int cnt=list.getChildCount();                    
                //set layout to all groups (for closed group)
                for(int i = 0; i < cnt; i`enter code here`++)
                    View group = adapter.getGroupView(i, false,
                            null, list);
                       LinearLayout childLayout = (LinearLayout) group.findViewById(R.id.newsLayout);                          childLayout.setBackgroundResource(R.layout.group_layout_shape);              
                
                // set layout of clicked group
                LinearLayout groupLayout = (LinearLayout) v.findViewById(R.id.newsLayout);
                groupLayout.setBackgroundResource(R.layout.group_layout_opened_shape);`enter code here`

它改变了点击组的布局(将展开),但不改变组的布局,折叠:(任何人都可以帮助我

【问题讨论】:

【参考方案1】:

你不应该使用这个方法,因为它只用于图片,颜色,布局要使用inflater,它有一个非常有趣的方法

inflate(R.layout.childLayout, ParentView, true);

首先放置要膨胀的图层,第二个 - 将包含子级的父级,第三个 - 布尔变量必须为真才能膨胀。

活动中的示例:

public class MainActivity extends ActionBarActivity 

LayoutInflater inflater;

@Override
protected void onCreate(Bundle savedInstanceState) 
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    inflater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);
    RelativeLayout parentView= (RelativeLayout) findViewById(R.id.mainLayout);
    View v = (View) inflater.inflate(R.layout.child_layout, parentView, true);



@Override
public boolean onCreateOptionsMenu(Menu menu) 
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;


@Override
public boolean onOptionsItemSelected(MenuItem item) 
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) 
        return true;
    

    return super.onOptionsItemSelected(item);

【讨论】:

以上是关于单击时可扩展的listview android更改布局的主要内容,如果未能解决你的问题,请参考以下文章

在Android中通过ArrayAdapter在ListView中单击单个ImageView背景后如何更改它?

ListView OnClickItems 在 Android 中更改项目颜色

通过单击列表视图上的列表项更改 MapView Android Studio 上的位置相机视图

禁用listView android中复选框的更改

悬停时可折叠图标/内容颜色更改

Android listview 不再突出显示单击时的选择