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

Can't change text of TextView in onCreateView method of Fragment

我正在使用默认导航抽屉 activity,其中包含填充每个菜单的片段。

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

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

所以我搜索了一种使用 findViewByID 而不使用 setContentView 的方法,这样导航抽屉就会保留下来,这样我也可以修改 TextView。我遇到了 this

这样做不会出现任何错误,但不会 return 正确的 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_width="wrap_content"
    android:layout_height="wrap_content"
    tools:context=".RouteListingsFragment">

    <TextView
        android:id="@+id/texttest"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        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_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context=".MainActivity"
    tools:showIn="@layout/app_bar_main">

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

总而言之,我如何从 Fragment class 修改 TextView?我不明白为什么我的方法不起作用。

试试这个:

@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
}