我有两个片段和一个主要活动。屏幕上显示第一个片段FriendsFriend(扩展ListFragment),当用户单击某个项目时,主Activity用FeedFragment替换FriendsFragment,然后从FeedFragment调用方法以更新textView。
我收到一个错误,即使我使用findViewById
方法实例化了FeedFragment类中的textView对象也为空。
我查看了相关问题并尝试了解决方案,但没有任何效果。我尝试做getView().findViewById(R.id.feed_view)
,getActivity().findViewById(R.id.feed_view)
,并尝试将它们放在onActivityCreated()
和onCreateView()
唯一有效的方法是在onActivityCreated()中编写以下代码:
text = getView().findViewById(R.id.feed_view);
text.setText("some string");
但这不是我想要的
FeedFragments.java
public class FeedFragment extends Fragment {
private static String TAG = "Feed Fragment";
private TextView text;
@Override
public void onActivityCreated(Bundle savedInstanceState) {
Log.i(TAG, "Entered FeedFragment.java onActivityCreated()");
super.onActivityCreated(savedInstanceState);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
Log.i(TAG, "Entered FeedFragment.java onCreateView()");
View v = inflater.inflate(R.layout.fragment_feed, container,false);;
text = v.findViewById(R.id.feed_view);
return v;
}
public void updateDisplay(int position)
{
Log.i(TAG, "FeedFragment.java: updateDisplay()");
text.setText(position);
}
MainActivity.java
// previously declared feedFragment: feedFragment = new FeedFragment();
public void onItemSelected(int position)
{
Log.i(TAG, "Entered onItemSelected(" + position + ")");
fragManager = getFragmentManager();
FragmentTransaction fragTransaction = fragManager.beginTransaction();
fragTransaction.replace(R.id.fragment_container, feedFragment, "feed_fragment");
fragTransaction.addToBackStack(null);
fragTransaction.commit();
feedFragment.updateDisplay(position);
}
fragment_feed.xml
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/feed_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/greeting" />
</ScrollView>
activity_main.xml
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
答案 0 :(得分:0)
onViewcreated()在updateDisplay()之后被调用。
您需要在其创建时将值传递给feedFragment,并将其存储在包中,并在系统运行片段内部代码后检索它。
解决方法如下:
当实例化feedFragment时,您将执行以下操作:
feedFragment = FeedFragment.newInstance(position)
在FeedFragment类中,您应该具有静态代码:
private static final String ARG_PARAM1 = "param1";
public static FeedFragment newInstance(int param1) {
FeedFragment fragment = new FeedFragment();
Bundle args = new Bundle();
args.putInt(ARG_PARAM1, param1);
fragment.setArguments(args);
return fragment;
}
和非静态代码:
private int mParam1;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (getArguments() != null) {
mParam1 = getArguments().getInt(ARG_PARAM1);
}
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
Log.i(TAG, "Entered FeedFragment.java onCreateView()");
View v = inflater.inflate(R.layout.fragment_feed, container,false);;
text = v.findViewById(R.id.feed_view);
text.setText(String.valueOf(mParam1));
return v;
}
我将mParam1包裹在String.valueOf()中,因为当您将整数传递给setText时,它会认为您尝试使用Strings.xml资源而不是您选择的数字。
我也使用了非常通用的变量名。请将它们更改为有意义的名称,以便您的代码有意义。