避免将null作为视图根传递(需要解析膨胀的布局的根元素上的布局参数)


230

为root studio传递null会给我这个警告:

避免将null作为视图根传递(需要解析膨胀的布局的根元素上的布局参数)

它在中显示一个空值getGroupView。请帮忙。

public class ExpandableListAdapter extends BaseExpandableListAdapter {

    private Context _context;
    private List<String> _listDataHeader; // header titles
    // child data in format of header title, child title
    private HashMap<String, List<String>> _listDataChild;

    public ExpandableListAdapter(Context context, List<String> listDataHeader,
                                 HashMap<String, List<String>> listChildData) {
        super();
        this._context = context;
        this._listDataHeader = listDataHeader;
        this._listDataChild = listChildData;
    }

    @Override
    public Object getChild(int groupPosition, int childPosititon) {
        return this._listDataChild.get(this._listDataHeader.get(groupPosition))
                .get(childPosititon);
    }

    @Override
    public long getChildId(int groupPosition, int childPosition) {
        return childPosition;
    }

    @Override
    public View getChildView(int groupPosition, final int childPosition,
                             boolean isLastChild, View convertView, ViewGroup parent) {

        final String childText = (String) getChild(groupPosition, childPosition);

        if (convertView == null) {
            LayoutInflater infalInflater = (LayoutInflater) this._context
                    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            convertView = infalInflater.inflate(R.layout.list_item, null);


        }

        TextView txtListChild = (TextView) convertView
                .findViewById(R.id.lblListItem);

        txtListChild.setText(childText);
        return convertView;
    }

    @Override
    public int getChildrenCount(int groupPosition) {
        return this._listDataChild.get(this._listDataHeader.get(groupPosition))
                .size();
    }

    @Override
    public Object getGroup(int groupPosition) {
        return this._listDataHeader.get(groupPosition);
    }

    @Override
    public int getGroupCount() {
        return this._listDataHeader.size();
    }

    @Override
    public long getGroupId(int groupPosition) {
        return groupPosition;
    }

    @Override
    public View getGroupView(int groupPosition, boolean isExpanded,
                             View convertView, ViewGroup parent) {
        String headerTitle = (String) getGroup(groupPosition);
        if (convertView == null) {
            LayoutInflater infalInflater = (LayoutInflater) this._context
                    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            convertView = infalInflater.inflate(R.layout.list_group, null);
        }

        TextView lblListHeader = (TextView) convertView
                .findViewById(R.id.lblListHeader);
        lblListHeader.setTypeface(null, Typeface.BOLD);
        lblListHeader.setText(headerTitle);

        return convertView;
    }

    @Override
    public boolean hasStableIds() {
        return false;
    }

    @Override
    public boolean isChildSelectable(int groupPosition, int childPosition) {
        return true;
    }

}

Answers:


364

而不是做

convertView = infalInflater.inflate(R.layout.list_item, null);

convertView = infalInflater.inflate(R.layout.list_item, parent, false);

它将与给定的父级一起膨胀,但不会将其附加到父级。


26
@Coeffect,但是从Activity中进行充气时应该使用什么?我应该用什么代替父母?
亚历山大·库兹涅佐夫

3
我想,@ AlexanderKuznetsov取决于您要执行的操作。如果您要设置活动的内容,则应使用setContentView(layoutId)。如果要向现有ViewGroup添加新视图,则可能应该只传递父级,并让充气机将新视图附加。
Coeffect 2014年

@LucasTan我想我会在TabContentFactory中保留对TabHost的引用,并在充气时将其用作父项,但是我不确定这是否是最佳解决方案。奇怪的是createTabContent方法不提供父/上下文。
Coeffect 2014年

4
实施时,同样的问题(没有父)出现onCreateInputView()一个InputMethodService
泰德·霍普

2
警报对话框的自定义视图如何,父级应该是什么?
user25


38

是的,出于某种原因,使用View.inflate而不是从layoutinflater进行膨胀会使棉绒错误消失。以为我会在这里发布此帖子,因为该主题位于Google搜索的顶部...

view = View.inflate(context,R.layout.custom_layout,null);

31

当您实际上没有任何对象parent(例如为创建视图AlertDialog)时,除了通过之外别无其他方法null。因此,这样做可以避免警告:

final ViewGroup nullParent = null;
convertView = layoutInflater.inflate(R.layout.list_item, nullParent);

59
压制比使皮棉起作用要好。
StarWind0

2
我不确定这个答案是正确的。我成功使用了活动布局文件中最外层容器的ID ViewGroup root = (ViewGroup) myActivity.findViewById(R.id.my_main_content);在哪里my_main_content
ban-geoengineering

10
要抑制这种情况,@SuppressLint("InflateParams")请在方法上方添加。
ban-geoengineering's October

7

对于AlertDialog波纹管代码可以使用

convertView = layoutInflater.inflate(R.layout.list_item, findViewById(android.R.id.content), false);

6

我在寻找解决方法时找到了很好的信息。根据Dave Smith的说法,

布局膨胀是Android上下文中使用的术语,用于指示何时解析XML布局资源并将其转换为View对象的层次结构。

ViewGroup被要求对这里的充气方法参数的一部分是用来继承更高级别styling.While传递null似乎无害,其实是可以引起你的应用程序的严重问题以后。在此处阅读有关此内容的更多信息 。


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.