gpt4 book ai didi

android - 用于手机和平板电脑的不同布局的 Butterknife

转载 作者:太空宇宙 更新时间:2023-11-03 12:49:43 24 4
gpt4 key购买 nike

我在当前项目中使用 Butterknife 库时遇到一些问题。我目前正在优化手机和平板电脑的项目,例如,有时两者的布局文件之间存在细微差异

布局/layout_example.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Text1/>
</LinearLayout>

layout-large/layout_example.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Text1/>

<TextView
android:id="@+id/text2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Text2/>
</LinearLayout>

类看起来像这样:

    @Bind(R.id.text1) TextView text1;    
@Bind(R.id.text2) TextView text2;

@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.layout_example, container, false)
ButterKnife.bind(this, rootView);
return rootView;
}

问题在于,由于“text2” View 不存在,因此在手机上查看时会抛出缺少 View 的异常。有没有办法解决?还是我必须对并非在所有布局上都可用的 View 使用 findViewById。谢谢!

最佳答案

在可能为空的 View 的@Bind 之前添加注解@Nullable。

示例来自 ButterKnife Website :

@Nullable @Bind(R.id.might_not_be_there) TextView mightNotBeThere;

关于android - 用于手机和平板电脑的不同布局的 Butterknife,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34206862/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com