无法在 Fragment 的 onCreateView 方法中更改 TextView 的文本

Posted

技术标签:

【中文标题】无法在 Fragment 的 onCreateView 方法中更改 TextView 的文本【英文标题】:Can't change text of TextView in onCreateView method of Fragment 【发布时间】:2019-04-01 05:54:08 【问题描述】:

我正在使用带有填充每个菜单的片段的默认导航抽屉活动。

我在其中一个片段中有一个文本视图(fragment_listing_routel.xml)。 我想修改位于片段中的文本视图。 为此,我使用 findViewByID 返回 textView 实例,以便修改其文本。

我知道在使用 findViewByID 之前,我必须使用 setContentView,否则会出现 null 错误。但是,我不能这样做,因为一旦我将 ContentView 设置为包含 TextView 的片段,它就会立即将片段设置为全屏,这摆脱了导航抽屉并让我无法在菜单之间切换。我不明白的是,当我使用这种方法时,更改已成功应用,但导航抽屉消失了。

所以我搜索了一种使用 findViewByID 而不使用 setContentView 的方法,以便保留 navdrawer 并且还可以修改 TextView。我遇到了this

这样做不会产生任何错误,但不会返回正确的 TextView 实例,因为当我尝试更改 TextView 中的文本时,它不起作用。

fragment_listings_route.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_
    android:layout_
    tools:context=".RouteListingsFragment">

    <TextView
        android:id="@+id/texttest"
        android:layout_
        android:layout_
        android:text="TEST"/>

</LinearLayout>

RouteListingFragment.java

TextView txtView;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) 
    //get id
    final LayoutInflater factory = getLayoutInflater();
    final View routelistingsview = factory.inflate(R.layout.fragment_listings_route, null);

    txtView = (TextView) routelistingsview.findViewById(R.id.texttest);
    txtView.setText("NEW TEXT");    
    return inflater.inflate(R.layout.fragment_listings_route, container, false);

content_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_
    android:layout_
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context=".MainActivity"
    tools:showIn="@layout/app_bar_main">

    <FrameLayout
        android:id="@+id/fMain"
        android:layout_
        android:layout_
        android:layout_marginTop="?attr/actionBarSize"></FrameLayout>
</android.support.constraint.ConstraintLayout>

回顾一下,我如何从 Fragment 类修改 TextView?我不明白为什么我的方法不起作用。

【问题讨论】:

你应该返回routelistingsview,现在你忽略了你修改的视图并返回新视图。 【参考方案1】:

试试这个:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) 
    //get id
    final View routeListingsView = inflater.inflate(R.layout.fragment_listings_route, null);

    txtView = (TextView) routeListingsView.findViewById(R.id.texttest);
    txtView.setText("NEW TEXT");    
    return routeListingsView; // You need to return the view in which the changed text exists

【讨论】:

以上是关于无法在 Fragment 的 onCreateView 方法中更改 TextView 的文本的主要内容,如果未能解决你的问题,请参考以下文章

我无法在 Home Fragment 中获取 Support Fragment?

Android 崩溃 onCreate() - Fragment 无法转换为 androidx.navigation.fragment.NavHostFragment

androidx.fragment.app.Fragment 无法转换为 android.app.Fragment

无法解决 Fragment 中的 getMapAsync

在 Fragment 中使用 .getActivity() 后无法访问的语句

无法在 Fragment 的 onCreateView 方法中更改 TextView 的文本