android:id 中区别。。

时间:2020-12-01 11:26:16

一、

android:id="@android:id/tabhost"   是调用系统内部的ID

和代码中

mTabContent = (FrameLayout) findViewById(com.android.internal.R.id.tabcontent);

是一回事。

二、

android:id="@+id/llRoot"

就是自己定义一个新的ID。

三、

android:id="@id/llRoot"

引用自己已经定义的id  在定位是常要使用。