我是Android新手,我不明白爲什麼Fragment
的內容是動態添加的(例如點擊按鈕後添加的某個圖片)在滾動某些計數後正在消失Fragment
s然後回來。Android Viewpager碎片刷新時刷新
實在是簡單的代碼Activity
和Fragment
:
public class MyActivity extends FragmentActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final ViewPager viewPager = (ViewPager) findViewById(R.id.viewPager);
final CustomAdapter adapter = new CustomAdapter(getSupportFragmentManager());
viewPager.setAdapter(adapter);
}
class CustomFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment, container, false);
}
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
getView().findViewById(R.id.clickMeButton).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
getView().findViewById(R.id.image).setVisibility(View.VISIBLE);
}
});
}
}
class CustomAdapter extends FragmentStatePagerAdapter {
private List<CustomFragment> fragments = Arrays.asList(
new CustomFragment(),
new CustomFragment(),
new CustomFragment()
);
public CustomAdapter(FragmentManager fm) {
super(fm);
}
@Override
public Fragment getItem(int i) {
return fragments.get(i);
}
@Override
public int getCount() {
return fragments.size();
}
}
}
和適當的個XML:
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<android.support.v4.view.ViewPager
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/viewPager" />
</LinearLayout>
fragment.xml之
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/clickMeButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="click me"/>
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"
android:visibility="gone"/>
</LinearLayout>
邏輯很簡單。在每個Fragment
上,我可以點擊Button
,並顯示圖像。
它的工作原理。 但是 ...
當我在第一個片段上顯示圖像,然後滾動到第三個,然後回到第一個圖像,圖像消失了。
我應該怎麼做才能防止這種情況?我應該以某種方式保存可見度狀態嗎?
感謝您的回覆。我已經嘗試過1和3項(除了第2項),但結果是一樣的。是否有其他方式來存儲碎片而不從內存中移除?我需要在Web瀏覽器中實現類似於標籤的內容。所以我會爲此使用WebView。當然,我可以在SharedPreferences頁面中存儲所選用戶。但它一直會加載該頁面。這是不正確的。所以我需要在記憶中保留片段。 – vetalitet