android – R.layout.listview与R.id.listview相同

前端之家收集整理的这篇文章主要介绍了android – R.layout.listview与R.id.listview相同前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是 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

猜你在找的Android相关文章