从片段访问TextView

时间:2018-07-02 07:34:38

标签: android xamarin textview fragment

enter image description here

数字1。通过按钮事件调用Fragment1

数字2。在Layout1中表达被叫片段

数字3。当在布局1中调用Fragment1并按下按钮1时,Fragment2调用布局2。

数字4。如果在调用片段2时按“返回”按钮,则“布局”仅返回具有原始按钮1,按钮2的屏幕。

不必一定是这种方式。 我想要的是如果打开了其他片段,则想按BackButton来返回默认的片段,其中包含按钮1和按钮2。

标题片段和ChoiceButtonFragment 我们将它们分开制造。我想从ChoiceButtonFragment访问TitleFragment的TextView。 也就是说,我希望在不进行任何活动的情况下直接从Fragment访问Fragment。

1 个答案:

答案 0 :(得分:0)

您可以按照以下方式在片段中访问TextView

  public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
    { var view = inflater.Inflate(Resource.Layout.fragment1, container, false);
var textView = view.FindViewById<TextView>(Resource.Id.MyTextView); }