是否可以将MainActivity控件TextVIEw调用为Fragment?我不知道这是否可行.
有DrawerLayout,它包含TextVIEw.验证布局包含TextVIEw.
<androID.support.v4.Widget.DrawerLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:ID="@+ID/drawerLayout" androID:layout_wIDth="fill_parent" androID:layout_height="match_parent" androID:background="@color/lightish" > <relativeLayout androID:layout_wIDth="fill_parent" androID:layout_height="match_parent" > <FrameLayout androID:ID="@+ID/frame" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:background="@color/lightish" /> <include layout="@layout/valIDation" /> </relativeLayout> <ListVIEw androID:ID="@+ID/lvSlIDer" androID:layout_wIDth="250dp" androID:layout_height="match_parent" androID:layout_gravity="start" androID:background="@color/dark_gray" androID:choiceMode="singleChoice" androID:divIDer="@color/dark_gray" androID:divIDerHeight="1dp" androID:ListSelector="@drawable/List_item_selector" /></androID.support.v4.Widget.DrawerLayout>
现在,当有人单击滑块菜单项时,我正在FrameLayout中调用Fragment.我想在Fragment中找到该TextVIEw控件.是否可以,如果可以,怎么办?就像在Asp.net中的WebForm中调用MasterPage控件一样.
解决方法:
是的,它有可能.
您可以这样尝试:
TextVIEw textvIEw = (TextVIEw) getActivity().findVIEwByID(R.ID.txtpoint);textvIEw.setText("Something you write");
总结 以上是内存溢出为你收集整理的从MainActivity调用TextView到Android中的Fragment全部内容,希望文章能够帮你解决从MainActivity调用TextView到Android中的Fragment所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)