第一次进入fragmentA时,按钮显示正常。
然后,我得到fragmentB来替换fragmentA。
然后,我得到fragmentA再次替换fragmentB,按钮在fragmentA中消失。
我遇到的问题是什么?
我的自定义按键代码:https://gist.github.com/zhongbaitu/26ad920cfb4273b3206c
我的XML: ```
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="cn.zmn.nizaoma.FragmentNizaoma">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<cn.zmn.widget.RaisedButton
android:id="@+id/question_one_but"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="问题1"/>
<cn.zmn.widget.RaisedButton
android:id="@+id/question_two_but"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="问题2"/>
</LinearLayout>
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/nizaoma_refesh_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.view.ViewPager
android:id="@+id/viewpager_nizaoma"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</android.support.v4.widget.SwipeRefreshLayout>
</LinearLayout>
</FrameLayout>
```
感谢。