using common Layout and its event in all activities

后端 未结 5 1431
你的背包
你的背包 2021-01-16 11:10

I have one common layout that has four button at top bar and i am using this layout in all activities by including that common layout in all activities layout by

5条回答
  •  既然无缘
    2021-01-16 11:21

    Hello Bindalbhai..

    MainActivity myAct = (MainActivity) this.getParent();
    
    TextView myTitleText = (TextView)myAct.findViewById(R.id.txtTitle);
    

    It may be helps you. Or you can use ViewGroup for this.

    Thanks.

提交回复
热议问题