Gridview片段没有刷新

时间:2012-11-16 02:50:42

标签: android replace android-fragments refresh

我有一个FrameLayout作为我正在用片段替换的滑动抽屉的内容。当我的活动开始时,FrameLayout被GridView片段替换。当我点击GridView中的一个项目时,它会用TextView片段替换FrameLayout。这个新片段有一个按钮,可以返回并使用GridView片段再次替换FrameLayout。这一切都很好,但出于某种原因,GridView和TextView在更改为时都没有刷新,但在我点击一个按钮后,从服务器获取信息,当时使用新信息刷新一个。有没有办法让android认为我需要重绘GridView和TextView?我已经尝试过invalidate()关于所有事情的所有地方,它似乎没有丝毫工作。似乎android在GridView适配器上调用“getView”方法,然后刷新,但是当片段更改为gridview时,它永远不会被调用。

很抱歉这个令人困惑的问题和解释,我真的不知道要发布什么代码,因为有这么多。我会根据要求更新代码。请帮忙!谢谢。

这是点击框架布局替换为textview布局的地方:

    playerGridView = (GridView) findViewById(R.id.playerInfoGrid);
    if (playerGridView != null) {
        playerGridView.setOnItemClickListener(new OnItemClickListener() {
            public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
                drawerFragment2 = new topFrag();
                FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
                transaction.replace(R.id.frag_content, drawerFragment2);
                transaction.addToBackStack(null);
                transaction.commit();
            }
        });
    }

以下是topFrag的内容:

public class topFrag extends Fragment {

private TextView view;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, 
    Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    return inflater.inflate(R.layout.slidingdrawer2, container, false);
}

@Override
public void onStart() {
    super.onStart();
    view = (TextView) getView().findViewById(R.id.characterInfo);
    view.setText("hello");
}

@Override
public void onSaveInstanceState(Bundle outState) {
    super.onSaveInstanceState(outState);
}
}

内部有framelayout的主要布局:

<?xml version="1.0" encoding="utf-8"?>  
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >    
<SlidingDrawer
     android:id="@+id/drawer" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:topOffset="125dip"
     android:handle="@+id/handle" 
     android:content="@+id/frag_content">

    <ImageView 
        android:id="@+id/handle" 
        android:contentDescription="@string/handle"
        android:layout_width="120dip" 
        android:layout_height="30dip"
        android:src="@drawable/drawertab"/>

    <FrameLayout
        android:id="@+id/frag_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</SlidingDrawer>

</RelativeLayout>

以下是我用以下内容替换framelayout的内容:

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#50808080" >

<TextView
    android:id="@+id/characterInfo"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@+id/playerInfoBack"
    android:text=""
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:textColor="#FFFFFF" />

<Button
    android:id="@+id/playerInfoBack"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:text="@string/back"
    android:onClick="back" />

</RelativeLayout>

不知道这是否有帮助,或者只是让它更加混乱。

当你点击playerGridView上的一个项目时,它会用一个新的“topFrag”(首先显示)替换framelayout(主要布局),它会使用带有按钮的textview布局来扩展片段。我只想在点击一个项目后更新你好。谢谢你的期待!

1 个答案:

答案 0 :(得分:0)

对于GridView,您可以在支持GridView的适配器上调用notifyDataSetChanged(),以便它知道更新。

对于TextView,我必须看到代码才能理解那里发生了什么。