如何更改片段内的视图?

时间:2011-05-10 16:49:36

标签: android android-fragments

我有一个片段可以像你期望的那样在onCreateView中创建它的视图。但是我想定期更改视图。

我的用例是片段显示来自Web服务的一些数据。当用户从列表(另一个片段)中选择一个选项时,此片段应切换到进度条,然后加载后,切换回数据视图。

我可以创建两个片段 - 加载片段和显示片段,但似乎因为这是一个封装的事件,所以我宁愿在一个片段内完成。

基本上我要问的是,片段内的setContentView是等价的。

9 个答案:

答案 0 :(得分:32)

您可以使用Fragment.getView()。这将返回包含Fragment的容器视图。在该视图中,您可以致电removeAllViews。然后构建新视图并将其添加到从getView()获得的视图中。

http://developer.android.com/reference/android/app/Fragment.html#getView()

答案 1 :(得分:25)

如果出于任何原因,您想要更改整个片段视图(例如,将更改成功视图的异步URL请求),您可以在父活动中使用FragmentTransaction并动态创建新片段

或者你可以保留片段并调用这个片段的方法来刷新自己。 例: 在父活动中,我构建并存储了片段列表List<RefreshFragment> mFragmentList

这是RefreshFragment类(我的所有片段都在我的示例中扩展了这个):

public class RefreshFragment extends Fragment {
    protected Data data; // here your asynchronously loaded data

    public void setData(Data data) {
        this.data = data;
        // The reload fragment code here !
        if (! this.isDetached()) {
            getFragmentManager().beginTransaction()
               .detach(this)
               .attach(this)
               .commit();
        }
    }
}

然后在我的活动异步回调中我可以调用:

for (RefreshFragment f : mFragmentList) f.setData(data);

因此,每个片段都将使用正确的数据进行更新,并且当前附加的片段将立即更新。当然,你必须在碎片中提供你自己的onCreateView。

重要的是片段可以使用getFragmentManager()重新加载自己。

答案 2 :(得分:3)

您可以使用FrameLayout在进度条和数据视图之间切换,例如

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <ImageView android:id="@+id/cover_image"
        android:scaleType="fitCenter"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />
    <ProgressBar android:id="@+id/cover_progress"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:layout_gravity="center"/>
</FrameLayout>

onViewCreate()中,您可以将两个视图存储到实例字段

public View onCreateView(LayoutInflater inflater,
        ViewGroup container, Bundle savedInstanceState) {
    ...
    image = (ImageView) container.findViewById(R.id.cover_image);
    progress = container.findViewById(R.id.cover_progress);
    ...
}

每当你想在两者之间切换时(记得在你的UI /主线程中这样做),只需做类似的事情

progress.setVisibility(View.INVISIBLE);
image.setVisibility(View.VISIBLE);

答案 3 :(得分:2)

创建“虚拟”默认视图

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

</LinearLayout>

在片段的onCreateView方法中夸大“虚拟”默认视图,并将其用作占位符以根据需要添加视图

private LayoutInflater mInflater;
private ViewGroup mContainer;

@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState){
    mInflater = inflater;
    mContainer = container;

    View v =inflater.inflate(R.layout.home_view,container,false);
    placeholder = (ViewGroup) v;

    return placeholder;
}

要将视图更改为新视图,请先移除所有先前的视图,然后为新视图充气并添加

View newView = mInflater.inflate(R.layout.custom_dash, mContainer, false);
placeholder.removeAllViews();
placeholder.addView(newView);

答案 4 :(得分:2)

这是一个更简单的解决方案:在onCreateView中保存您收到的inflater和容器,稍后再使用它们。例如:

private LayoutInflater mInflater;
private ViewGroup mRootView;

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    mInflater = inflater;
    mRootView = container;
    return null;
}

public void someCallBackLater() {
    // mRootView.removeAllViews();   // in case you call this callback again...
    mInflater.inflate(R.layout.my_layout, mRootView);
}

答案 5 :(得分:1)

你可以使用Transaction删除和添加。我使用了一个片段,我可以在其中加载任何视图。 片段的构造函数必须有一个整数,该整数是R.layout .... 我只是删除旧片段并添加一些新片段。 !它只适用于使此片段成为动态而不是xml布局的情况。 只需创建类似LinearLayout R.id.fragment_layout

的内容
@Override
protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);

    setContentView(R.layout.wundlist_fragmente);
    Log.v("WoundListActivity", "WoundListActivity gestartet...");

    Log.v("WoundListActivity", "Liste...");
    //dynamisch hinzufügen...
    wlf=new WoundListFragment();        
    fm.beginTransaction().add(R.id.fragment_layout,wlf).commit();

}

//If Menubutton Clicked change

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    if(item.getItemId()==R.id.itemaddwound){
        Log.v("List", "neue Wunde Activity");

        fm.beginTransaction().remove(wlf).commit();
        fm.beginTransaction().add(R.id.fragment_layout, new NewWoundFragment()).commit();

    }

    return super.onOptionsItemSelected(item);
}

答案 6 :(得分:1)

使用Solostaran14s响应我现在正在这样做:

接口:

public interface FragmentReattachListener {

    public void reAttach();

}

片段:

public class MyFragment extends Fragment implements  FragmentReattachListener {
//...

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    //...
    App.registerFragmentReattachListener(this);
    //...
}

//...    

@Override
public void reAttach() {
    FragmentManager f = getFragmentManager();
    if (f != null) {
         f.beginTransaction()
                    .detach(this)
                    .attach(this)
                    .commit();
        }
    }

}
来自Application class的

private static void reattachFragments() {
        if (fragmentReattachListeners.size() > 0) {
            for (FragmentReattachListener listener : fragmentReattachListeners) {
                listener.reAttach();
            }
        }
    }

答案 7 :(得分:-1)

这对我有用:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    View v = inflater.inflate(R.layout.fragment_recipe, container, false);
    Button recipeBuyButton = (Button) v.findViewById(
            R.id.recipe_buy_button);
    Typeface tf = Typeface.createFromAsset(getActivity().getAssets(), "fonts/GE_SS_Two_Medium.otf");
    recipeBuyButton.setTypeface(tf);
    return v;

答案 8 :(得分:-1)

我有同样的问题,fragment.getView()总是返回null,虽然之前已经调用了Fragment.onCreateView

我们无法在运行时更改片段的内容,因为我的片段已添加到ViewPager中,所以我尝试使用其他方法来获取视图:

 View view  =  viewPager.getChildAt(0);
 TextView text = (TextView) (view.findViewById(R.id.textView));
 text.setText("12345");

这个问题现在已经解决了,我希望可以帮到你