在Activity中,可以直接用findViewById(int id),通过xml的id来找到对应的View. 查找官方的api,具体如下: https://developer.android.google.cn/reference/android/app/Activity.html#findViewById(int) 而在Fragment中,直接使用会报错如下: The method findViewById(int) is undefined for the type Fragment 可