从活动中调用片段方法

Posted

技术标签:

【中文标题】从活动中调用片段方法【英文标题】:Calling fragment method from activity 【发布时间】:2013-10-20 11:36:41 【问题描述】:

我的项目 ViewPage 中有一个带有两个片段(FragmentView1 和 FragmentView2)。

这是我的 ViewPage MainActivity,它有一个带有菜单的 ActionBar。

在这个菜单中,每个选项都应该调用 FragmentView1 中的方法来更新它。

但我真的不知道该怎么做!

这是我的 FragmentView1 中的方法:

public void loadPoema()
    // my code here

这是我从我的活动中调用它的地方:

@Override
    public boolean onOptionsItemSelected(MenuItem item) 
        // Handle presses on the action bar items
        switch (item.getItemId()) 
            case R.id.actBack:
                postAtual--;   
                        // Here I call the method in FragmentView1          
                return true;
            default:
                return super.onOptionsItemSelected(item);
        
    

在 FragmentView1 中学习有问题的方法用于更新它(非常 Fragment)加载新数据。

再次为我的水平道歉,我正在使用谷歌翻译

编辑

MainActivity XML:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_
    android:layout_
    android:orientation="vertical"
    tools:context=".MainActivity" >

    <android.support.v4.view.ViewPager
       android:id="@+id/viewpager"
       android:layout_
       android:layout_
       android:layout_weight="1">

            <android.support.v4.view.PagerTabStrip
                android:id="@+id/pagerTabStrip"
                android:layout_gravity="bottom"
                android:layout_
                android:layout_
                android:background="#cccccc"/>

    </android.support.v4.view.ViewPager>

</LinearLayout>

片段 XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_
    android:layout_
    android:padding="@dimen/activity_horizontal_margin"
    android:id="@+id/fragPoema"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/txtTitulo"
        android:layout_
        android:layout_
        android:gravity="center"
        android:textStyle="bold"
        android:textSize="18sp"
        android:textColor="#0099FF"
        android:typeface="serif" />

    <TextView
        android:id="@+id/txtPoema"
        android:layout_
        android:layout_
        android:layout_marginTop="10dp"
        android:textColor="#333333"
        android:layout_gravity="center"
        android:scrollbars="vertical"
        android:typeface="serif" />

</LinearLayout>

和 MainActivity 代码:

private void loadViews()
        mViewPager = (ViewPager) findViewById(R.id.viewpager);

        TitleAdapter titleAdapter = new TitleAdapter(getSupportFragmentManager());
        mViewPager.setAdapter(titleAdapter);
        mViewPager.setCurrentItem(0);
    

【问题讨论】:

您需要保留对您的Fragment 的引用,然后拨打mFragmentView1.loadPoema(); @Phil 我尝试如下调用该方法,而不必实例化:FragmentView1.loadPoema(); 但显然当我想要一些活动时不起作用,只需调用 MainActivity.sameMathone 好吧,起初运行方法调用,但在 FragmentView1 的这个方法中,它运行 mDialog = new ProgressDialog(getActivity());,当我调用 MainActivity 时返回错误,因为 getActivity() 您正试图将local 方法作为static 方法调用。您需要在instancemFragmentView1 上致电loadPoema() @WaltterBarreiroNeto,这绝对不是正确的使用方法。查看this 问题以帮助找出正确的方法。 【参考方案1】:

当您需要片段时,您可以使用findFragmentByTag 获取对它的引用,然后对其执行操作。确保您最初给片段一个标签。它可以由代码或 XML 生成。

编辑:我现在看到您正在使用寻呼机适配器来创建片段。这有点棘手。按照这篇文章提取您正在创建的片段的Tag。 reusing fragments in a fragmentpageradapter

【讨论】:

如何实现这个?抱歉,我有点迷路了。

以上是关于从活动中调用片段方法的主要内容,如果未能解决你的问题,请参考以下文章

从片段内部调用活动方法[重复]

从活动中调用片段方法

从片段中调用父母的活动

从活动中调用片段中的非静态方法?

从意图活动访问片段方法

如何从活动中调用片段方法?