我正在View
通过膨胀 xml 布局来制作:
LayoutInflater inflater = (LayoutInflater) getBaseContext()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view=inflater.inflate(com.example.R.layout.aaa, null);
在 aaa.xml 我有一个RelativeLayout
本身包含 aTextView
和 a 的Button
。现在我怎样才能访问那个TextView
视图对象?