我有一个Activity
并与之关联layout
。我还有另一个layout
,其中有一些Views
。我想使用该独立TextView
中的Activity
从我的View
初始化变量(layout
)。我总是得到null
。
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
button = (Button) findViewById(R.id.button); // This is OK
// because R.id.button is from R.layout.main layout
tvOne = (TextView) findViewById(R.id.first_item); // This is not OK
// because R.id.first_item is from another layout.
}
答案 0 :(得分:3)
您无法在另一个布局中实例化视图,但您可以实例化一个可以是您想要的视图的布局。
LayoutInflater inflater = getLayoutInflater();
TextView text = (TextView) inflater.inflate(R.layout.contenttext, yourRootView, false);
这是相应的布局(contenttext.xml):
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="12sp"/>
答案 1 :(得分:1)
这是正确的行为,因为findViewById()
只会搜索在传递给setContentView()
的视图层次结构中设置的视图