Android UI Libs之ExpandableLayout

Android UI Libs之ExpandableLayout


1. 说明


ExpandableLayout,顾名思义,可扩展的布局,是一个可以帮助我们实现折叠功能的第三方库,折叠时,只显示头部,打开时,显示头部与内容。

2. 配置


在模块中添加依赖:compile 'com.github.traex.expandablelayout:library:1.2.2'

因为添加依赖的aar文件中设置了应用程序图标,所以我们要在清单文件AndroidManifest.xmlmanifest里面添加xmlns:tools="http://schemas.android.com/tools",application里面面添加上tools:replace="android:icon",不然会有冲突。

Android UI Libs之ExpandableLayout_第1张图片

3. 使用方法


扩展单个内容时使用ExpandableLayoutItem,扩展ListView时使用ExpandableLayoutListView

1. 扩展单个内容


扩展单个内容时的xml布局,expandable:headerLayout代表头部,expandable:contentLayout代表内容
xmlns:expandable="http://schemas.android.com/apk/res-auto"

      
Android UI Libs之ExpandableLayout_第2张图片

2. 扩展Listview


扩展ListView时的xml布局,expandable:headerLayout代表头部,expandable:contentLayout代表内容

    
      

ListView中item对应的xml布局文件如下:



    
  

java文件中的相关代码:

    private String[] array={"微信公众号","Android技术漫谈","Android","Android开发"};
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        final ArrayAdapter arrayAdapter = new ArrayAdapter(this, R.layout.list_item, R.id.header_text, array);
        final ExpandableLayoutListView expandableLayoutListView = (ExpandableLayoutListView) findViewById(R.id.list_view);
        expandableLayoutListView.setAdapter(arrayAdapter);
    }  
Android UI Libs之ExpandableLayout_第3张图片

注意:如果ExpandableLayoutListView中的item中有EditView,那么ExpandableLayoutListView要设置android:windowSoftInputMode="adjustPan"来阻止自身的重绘与item的关闭

程序源代码下载:https://github.com/lavor-zl/UILibs

你可能感兴趣的:(Android UI Libs之ExpandableLayout)