时间:2021-05-21
最近Android Studio 升级后 butterknife 有一个警告:
Resource IDs will be non-final in Android Gradle Plugin version 5.0, avoid using them as annotation attributes
查看官网发现:
butterknife已经弃用,建议使用 view binding 替换。
官方介绍:
通过视图绑定功能,您可以更轻松地编写可与视图交互的代码。在模块中启用视图绑定之后,系统会为该模块中的每个 XML 布局文件生成一个绑定类。绑定类的实例包含对在相应布局中具有 ID 的所有视图的直接引用。
在大多数情况下,视图绑定会替代 findViewById。
在 Activity 的 onCreate() 方法中执行以下步骤:
现在即可使用该绑定类的实例来引用任何视图:
binding.getName().setText(viewModel.getName());binding.button.setOnClickListener(new View.OnClickListener() { viewModel.userClicked()});现在即可使用该绑定类的实例来引用任何视图:
binding.getName().setText(viewModel.getName());binding.button.setOnClickListener(new View.OnClickListener() { viewModel.userClicked()});在 Fragment 的 onCreateView() 方法中执行以下步骤:
项目运行后,每个布局文件都会生成对应的binding类,比如 activity_main.xml 会生成 ActivityMainBinding.java 文件,路径如下:
app\build\generated\data_binding_base_class_source_out\debug\out\包名\databinding
代码其实很简单就是加载布局,然后对控件进行初始化:
public final class ActivityMainBinding implements ViewBinding { @NonNull private final LinearLayout rootView; @NonNull public final WebView wv; private ActivityMainBinding(@NonNull LinearLayout rootView, @NonNull WebView wv) { this.rootView = rootView; this.wv = wv; } @Override @NonNull public LinearLayout getRoot() { return rootView; } @NonNull public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater) { return inflate(inflater, null, false); } @NonNull public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater, @Nullable ViewGroup parent, boolean attachToParent) { View root = inflater.inflate(R.layout.activity_main, parent, false); if (attachToParent) { parent.addView(root); } return bind(root); } @NonNull public static ActivityMainBinding bind(@NonNull View rootView) { // The body of this method is generated in a way you would not otherwise write. // This is done to optimize the compiled bytecode for size and performance. String missingId; missingId: { WebView wv = rootView.findViewById(R.id.wv); if (wv == null) { missingId = "wv"; break missingId; } return new ActivityMainBinding((LinearLayout) rootView, wv); } throw new NullPointerException("Missing required view with ID: ".concat(missingId)); }}ViewBinding 的源码如下:
public interface ViewBinding { /** * Returns the outermost {@link View} in the associated layout file. If this binding is for a * {@code <merge>} layout, this will return the first view inside of the merge tag. */ @NonNull View getRoot();}可以对代码稍加改造,减少 Activity 、Fragment 、Adapter 中的重复代码。
如果布局中有使用 <include> 标签,需要给 <include> 设置id,才可以获取到组合控件中的元素。
<!-- 一个简单的标题栏布局 --><?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content"> <ImageView android:id="@+id/iv_back" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@mipmap/ic_launcher"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/tv_title" android:text="this is title"/></LinearLayout><?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <!-- 使用组合控件 --> <include layout="@layout/view_title" android:id="@+id/view_title"/> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/tv_content" android:text="test"/></LinearLayout>public class TestFragment extends BaseFragment<FragmentTestBinding>{ @Override public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); binding.tvContent.setText("this is test"); //通过 include 的id找到对应的控件 binding.viewTitle.tvTitle.setText("this is title"); } @Override protected FragmentTestBinding getBinding(LayoutInflater inflater, ViewGroup container) { return FragmentTestBinding.inflate(inflater, container, false); }}以上就是Android ViewBinding的使用详解的详细内容,更多关于Android ViewBinding的使用的资料请关注其它相关文章!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
AndroidSimpleAdapter使用详解HolderAdapter背景Android的AdapterView用的比较多,ListView,GridVie
Android中Context的使用方法详解概要:Context字面意思是上下文,位于frameworkpackage的android.content.Cont
Android中ActivityLifecycleCallbacks的实例详解以上就是使用ActivityLifecycleCallbacks的实例,代码注释写
Android中onSaveInstanceState()使用方法详解覆盖onSaveInstanceState方法,并在onCreate中检测savedIns
Android开发中使用LinuxShell实例详解引言Android系统是基于Linux内核运行的,而做为一名Linux粉,不在Android上面运行一下Li