【安卓】从当前Activity获得其他view
程序员文章站
2022-04-15 18:44:19
...
LayoutInflater textInflater=LayoutInflater.from(this);
//视图view2
View view=textInflater.inflate(R.layout.view2,null);
//获得view2内的名为view2_id的textView
TextView textView=(TextView)view.findViewById(R.id.view2_id);
上一篇: kotlin(七). 内联函数