解决
我想将新文字设为TextView
。我在TextView
中有MainActivity
的新值,但此活动不知道此TextView
。 TextView
位于fragment_main.xml
文件中。 Fragment类包含在MainActivity.java
文件中,如内部静态类。它是Eclipse中片段的默认生成活动。你能救我吗?
public class MainActivity extends FragmentActivity {
...
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
...
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment()).commit();
}
}
public static class PlaceholderFragment extends Fragment {
public PlaceholderFragment() { }
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_main, container, false);
return rootView;
}
}
}
activity_main.xml中
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.zonemedia.skener.MainActivity"
tools:ignore="MergeRootFrame" />
fragment_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/viewmoje"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.zonemedia.skener.MainActivity$PlaceholderFragment" >
<TextView
android:id="@+id/texturl"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/text_url" />
</LinearLayout>
编辑1:
我试图在Fragment中创建公共方法(= setter)并从FragmentActivity中调用它。
我还尝试直接从片段更改文本:
TextView textUrl = (TextView) getView().findViewById(R.id.texturl);
textCode.setText("random");
我尝试过@masmic_87所写的内容。在片段I中定义
TextView fragmentTextView = (TextView)getView().findViewById(R.id.texturl);
然后在活动中我推出了你的代码。应用程序仍在崩溃:
java.lang.RuntimeException: Unable to start activity ComponentInfo{.....MainActivity}: java.lang.NullPointerException caused by line 86: ((PlaceholderFragment) fragment).fragmentTextView.setText("something");
最后我尝试直接从静态片段调用静态字符串,但是MainActivity.this是下划线的原因:静态字段MainActivity.this应该以静态方式访问,并且在范围内不能访问类型为MainActivity的封闭实例。
我还尝试将内部类PlaceholderFragment移动到新的.java文件,现在它不是静态的。我从这里尝试了所有建议,没有任何工作
解决 我不知道我的脑袋在哪里。在片段中,我调用了(TextView) getView() ....而不是
View rootView = inflater.inflate(R.layout.fragment_main, container,false);
mTextView = (TextView) rootView.findViewById(R.id.texturl);
mTextView.setText("new text");
答案 0 :(得分:1)
看看这是否适合你。
在活动中引用您的片段:
PlaceholderFragment fragment = new PlaceholderFragment();
然后在片段的textview上定义所需的文本:
((PlaceholderFragment)fragment).fragmentTextView.setText(text you want);
这将是随时将textview的值传递给片段。如果你想在调用片段事务时传递这个值,那么最好这样做:
Bundle bundle = new Bundle();
bundle.putString("textview", "new_value");
PlaceholderFragment fragment= new PlaceholderFragment();
fragment.setArguments(bundle);
transaction.add(R.id.container, fragment);
transaction.commit();
答案 1 :(得分:1)
如果片段是活动的静态内含类,那么为什么不将文本存储在活动中的静态字符串中,然后片段将通过MainActivity.this.stringName直接访问它。
这个解决方案会让你的代码非常高度耦合,但如果它是一个静态的内部类,并且他们不得不像这样传递数据,那么你就不必担心这一点。