无法在Fragment

时间:2018-10-27 20:55:44

标签: android fragment findviewbyid setcontentview

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

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

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

因此,我寻找了一种在没有setContentView的情况下使用findViewByID的方法,以便保留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_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类修改TextView?我不明白为什么我的方法行不通。

1 个答案:

答案 0 :(得分:0)

尝试一下:

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