0

これは私のレイアウトファイルです。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
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=".ImageDownloadActivity" >

<EditText 
    android:id="@+id/url_text"
    android:layout_width = "match_parent"
    android:layout_height="wrap_content"
    android:hint="@string/url_field_hint"
    android:inputType="textUri"
    android:layout_alignParentTop="true"/>

<Button 
    android:id="@+id/download_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/download_url"
    android:layout_below="@+id/url_text"
    android:layout_centerHorizontal="true"
    android:onClick="downloadImage"
    />

</RelativeLayout>  

そして、これは私の Fragment クラスです

public class ImageDownloadFragment extends Fragment {

    public ImageDownloadFragment() {

    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
        return (RelativeLayout)inflater.inflate(R.layout.image_download, null);
    }
}

活動の中で私はこれをやっています。

imageDownloadFragment = new ImageDownloadFragment();
FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction();

        fragmentTransaction.replace(R.id.image_download_layout, imageDownloadFragment);
        fragmentTransaction.commit();


EditText urlText = (EditText)findViewById(R.id.url_text);
    if(urlText!=null)
    urlText.setText(urlEntered);

だから私はxmlレイアウトを持っています。フラグメントでそれを膨らませてから、コンテナ内のフラグメントを置き換えています。この時点まではすべて正常に動作します。しかし、FragmentTransaction をコミットした後、フラグメント内の EditText ビューにアクセスしようとすると、null ポインター例外が発生します。R ファイル内のすべての ID が正しい。提案してください

4

2 に答える 2