我是
android编程的新手.我创建了一个ListView及其android:id =“@ id / listView1”
ListView list= (ListView) findViewById(R.id.listView1);
ListView list= (ListView) findViewById(R.layout.listView1);
它会引用相同的ListView吗?这两个片段之间有什么区别吗?
两者都不同.
R.id.listView1: –
表示在布局(您的XML文件)中声明的View的id为android:id =“@ id / listView1”
和
R.layout.listView1: –
表示格式为res – >的布局文件(xml文件).布局目录
你可以做
ListView list= (ListView) findViewById(R.id.listView1);
因为ListView是View系列.
但你做不到
ListView list= (ListView) findViewById(R.layout.listView1);
原文链接:https://www.f2er.com/android/308908.html