任何人都可以解释“ android.R.id.content”的含义吗?
如何使用?
http://developer.android.com没有任何解释。
从以下版本开始:public static final int内容:API级别1常数值:16908290(0x01020002)
这在片段事务中很有用,例如:mFragmentTransaction.add(android.R.id.content,myFragment);
—
IgorGanapolsky 2014年
@IgorGanapolsky一个示例应用程序有条件地执行这种事务:
—
安慰
if(fragmentManager.findFragmentById(android.R.id.content)==null) {fragmentManager.beginTransaction(android.R.id.content, list).add().commit();}
您能知道这View
是哪个根元素吗?
@Zarah您确定此处的语法正确且可编译吗?
—
IgorGanapolsky 2014年
与布局相关的类是什么
—
Sushant
android.R.id.content
?
android.R.id.content
为您提供视图的根元素,而无需知道其实际名称/类型/ ID。退房stackoverflow.com/questions/4486034/...