1. 方法一: findViewById 2. 方法二: viewBinding 使用方法二时,需要在app的build.gradle中android {…}属性中添加
viewBinding {enabled = true}
与使用findViewById相比,视图绑定优点: ? ???1.null安全性:由于视图绑定会创建对视图的直接引用,因此不会因无效的视图ID而导致null指针异常的风险。 此外,当视图仅在布局的某些配置中存在时,在绑定类中包含其引用的字段将用@Nullable ?????2.类型安全性:每个绑定类中的字段具有与其在XML文件中引用的视图匹配的类型。 这意味着没有类强制转换异常的风险。 视图绑定缺点: ??????新建项目时不是默认的,需要修改build.gradle和java两个文件
举个栗子:
java文件:
public class FirstActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView textView1 = (TextView) findViewById(R.id.textView1);
textView1.setText("第一次采用findViewById方法");
MainBinding mainBinding = MainBinding.inflate(getLayoutInflater());
setContentView(mainBinding.getRoot());
mainBinding.textView2.setText("采用MainBinding");
textView1 = (TextView) findViewById(R.id.textView1);
textView1.setText("第二次采用findViewById方法");
}
}
main.xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/var1" />
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/var2" />
</LinearLayout>
strings.xml文件
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="var1">布局中定义的第一个TextView</string>
<string name="var2">布局中定义的第二个TextView</string>
</resources>
运行结果:
|