有很多线程在谈论这个,但我尝试了一切,似乎没有工作。我的问题有点简单,我有一个带有5个片段页面的viewpager。
这个片段中的每个片段只有1个编辑文本具有相同的布局,问题是如果我在edsxt上写一些东西onswipe到next或上一页我想重置该edittext。
例如: PAGE1:editext = 2929 ---(滑动)--- PAGE2:edittext = 0 ----(滑动)--- PAGE1:edittext = 0
但它总是显示2929。
我为我的应用程序执行此操作,即时尝试在teste程序中使用。
这是我的Adpater
public class MyFragmentPagerAdapter extends FragmentStatePagerAdapter {
int PAGE_COUNT;
int total;
Fragment frag;
FragmentManager fmm;
/** Constructor of the class */
public MyFragmentPagerAdapter(FragmentManager fm, int x, int total) {
super(fm);
fmm = fm;
total = 0;
PAGE_COUNT = x;
}
/** This method will be invoked when a page is requested to create */
@Override
public Fragment getItem(int arg0) {
final FragmentTab11 myFragment = new FragmentTab11();
Bundle data = new Bundle();
data.putInt("current_page", arg0 + 1);
myFragment.setArguments(data);
return myFragment;
}
/** Returns the number of pages */
@Override
public int getCount() {
return PAGE_COUNT;
}
@Override
public int getItemPosition(Object object) {
return POSITION_NONE;
}
这是我的片段
public class FragmentTab11 extends SherlockFragment {
int mCurrentPage;
TextView tv;
EditText edt;
Button btn;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/** Getting the arguments to the Bundle object */
Bundle data = getArguments();
/** Getting integer data of the key current_page from the bundle */
mCurrentPage = (data != null) ? data.getInt("current_page", 0) : 1;
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.fragment_one1, container, false);
tv = (TextView) v.findViewById(R.id.textView1);
tv.setText("You are viewing the page #" + mCurrentPage
+ " of Frag1\n\n" + "Swipe Horizontally left / right");
btn = (Button) v.findViewById(R.id.button1);
btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
update();
}
});
edt = (EditText) v.findViewById(R.id.editText1);
return v;
}
public void update() {
Log.w("text", mCurrentPage+": " + edt.getText().toString());
edt.setText("");
}
@Override
public void onDetach() {
edt.post(new Runnable() {
@Override
public void run() {
edt.setText("");
Log.w("DETACH", "CurrentPage " + mCurrentPage);
}
});
super.onDetach();
}
而我喜欢对按钮侦听器执行相同操作,重置edittext但不是单击它,而是在滑动手势上。
谢谢你, GonçaloMoura
编辑: 来自fragment_one1的xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="1" />
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:ems="10" >
</EditText>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" /></LinearLayout>
查看寻呼机:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="fill_parent"
android:layout_height="fill_parent" /></LinearLayout>
我尝试从FragmentManger中删除片段,
@Override
public int getItemPosition(Object object) {
return POSITION_NONE;
}
另外,tv.setOffscreenPageLimit(limit);,试过FragmentStatePagerAdapter和FragmentPagerAdapter,我有状态,因为它破坏了片段,使用事件onDetach(),onDestroy()等等,如果你看到片段的代码,你可以看到我的方法onDetach(),notifydatasetchanged,设置新的适配器。
答案 0 :(得分:0)
好吧,因为我们“全部”知道viewpager会创建3个页面,而且这些页面将设置为NOT VISIBLE和VISIBLE。我用Google搜索并发现了这个:
@Override
public void setUserVisibleHint(boolean isVisibleToUser) {
super.setUserVisibleHint(isVisibleToUser);
if (isVisibleToUser) {
Log.w("Visible1", "CurrentPage " + mCurrentPage);
} else {
Log.w("NOTVISIBLE1", "CurrentPage " + mCurrentPage);
if (edt != null) {
edt.setText("");
}
}
}
当我滑动并向后滑动时,我的值将被重置,“if”是因为视图可能尚未创建,此方法在onCreate()方法之前调用。但它有效,我不知道你们是否同意或有更好的解决方案。我希望它会帮助别人。
干杯