/* * Created by LuaView. * Copyright (c) 2017, Alibaba Group. All rights reserved. * * This source code is licensed under the MIT. * For the full copyright and license information,please view the LICENSE file in the root directory of this source tree. */ package com.taobao.luaview.userdata.list; import android.widget.ListView; import com.taobao.luaview.view.LVListView; import org.luaj.vm2.Globals; import org.luaj.vm2.LuaValue; import org.luaj.vm2.Varargs; /** * 容器类-ListView,模拟OC的section分区实现,Section顺序排列 * * @author song * @date 15/8/20 */ public class UDListView extends UDBaseListView<LVListView> { public UDListView(LVListView view, Globals globals, LuaValue metaTable, Varargs initParams) { super(view, globals, metaTable, initParams); } @Override public ListView getListView() { return getView(); } }