微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

android-DataBindingUtil.setContentView(this,resource)返回null

我开始使用Android数据绑定,但是没有成功.我已经按照documentation中的建议进行了所有操作,但是当我必须设置方法值时,我会得到null.
我正在使用Android Studio 2.1.2,并且放入了gradle

dataBinding {
    enabled = true
}

在布局中,我执行完全相同的放置布局,在内部放置标签数据:

<data>
    <variable name="order" type="com.example.Order"/>
</data>

当我想要绑定变量时

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
ActivityOrderOnePaneBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_order_one_pane);
binding.setorder(mOrder);

绑定为空,我没有编译错误.

解决方法:

由于您要在Activity中覆盖setContentView,因此需要替换:

ActivityOrderOnePaneBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_order_one_pane);

ActivityOrderOnePaneBinding binding = DataBindingUtil.inflate(getLayoutInflater(), R.layout.activity_order_one_pane, getContentFrame(), false);
setContentView(binding.getRoot());

我遇到了同样的问题,因为我覆盖了基本Activity中的setContentView并对其进行了修复.

如果覆盖setContentView,则getContentFrame()是包含内容的ViewGroup,不包括AppBarLayout和Toolbar.这是一个示例,如果您的基本布局类似于以下内容,则getContentFrame()的样子:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <android.support.design.widget.AppBarLayout
        ...>
        <android.support.design.widget.CollapsingToolbarLayout
           ...>
                <android.support.v7.widget.Toolbar
                   .../>
        </android.support.design.widget.CollapsingToolbarLayout>
    </android.support.design.widget.AppBarLayout>

    <android.support.v7.widget.ContentFrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <FrameLayout
            android:id="@+id/content_frame"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </android.support.v7.widget.ContentFrameLayout>
</android.support.design.widget.CoordinatorLayout>

getContentFrame()仅返回上述布局中的FrameLayout.

protected ViewGroup getContentFrame() {
    return (ViewGroup) findViewById(R.id.content_frame);
}

我希望这有帮助.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐