TextView setText не работает
Я пытаюсь установить Text для текстовых представлений во фрагменте, который содержится в деятельности. Когда я устанавливаю текст с помощью метода setText, я вижу, что переменной класса mText textview присваивается это значение. Однако в конце пользовательского интерфейса я не вижу текст, установленный кодом.
У меня есть макет активности, как это.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/meaningcontainer"
tools:context="com.xyz.MeaningActivity"
tools:ignore="MergeRootFrame"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_below="@+id/meaning_toolbar"
android:id="@+id/word_selected"
android:textSize="@dimen/abc_text_size_title_material_toolbar"
/>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/word_selected"
android:id="@+id/word_meanings"
>
<fragment
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/frag_meaning"
android:name="com.xyz.ui.MeaningActivity$MeaningFragment"
tools:layout="@layout/fragment_meaning"
/>
</FrameLayout>
Соответствующий фрагмент, который включен в этот макет, следующий:
<ScrollView xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
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=".ui.MeaningActivity$MeaningFragment"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="@dimen/cardview_default_elevation"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:id="@+id/postype_noun"
android:textAlignment="textStart"
android:textSize="@dimen/abc_text_size_title_material_toolbar"
android:layout_marginStart="@dimen/activity_horizontal_margin"
/>
</LinearLayout>
</android.support.v7.widget.CardView>
</RelativeLayout>
В методе активности onCreate я пытаюсь установить текст. Вот код для этого:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_meaning);
if (savedInstanceState == null) {
Fragment fragment = new MeaningFragment();
getSupportFragmentManager().beginTransaction()
.add(R.id.word_meanings, fragment).commit();
}
Fragment fragment = getSupportFragmentManager().
findFragmentById(R.id.frag_meaning);
View frag_view = fragment.getView();
TextView postextView = (TextView) frag_view.
findViewById(R.id.postype_noun);
postextView.setText("test");
}
TextView postextView не является нулевым, и ему присваивается значение теста. Но в конце пользовательского интерфейса я не вижу ни одной тестовой строки.
2 ответа
Попробуйте удалить макет карты из макета вашей деятельности.
Удалите следующие строки из метода onCreate вашей деятельности:
if (savedInstanceState == null) {
Fragment fragment = new MeaningFragment();
getSupportFragmentManager().beginTransaction()
.add(R.id.word_meanings, fragment).commit();
}
Нет необходимости делать это, потому что ваш фрагмент уже создан с помощью XML в вашем макете активности.