Skip to content

Instantly share code, notes, and snippets.

@manishkpr
Created December 30, 2016 05:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manishkpr/47e97fe8690f805a209438313d6f30ef to your computer and use it in GitHub Desktop.
Save manishkpr/47e97fe8690f805a209438313d6f30ef to your computer and use it in GitHub Desktop.
package com.example.simplefragmentexample;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
public class LayOutTwo extends Fragment {
ViewGroup root;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {
root = (ViewGroup) inflater.inflate(R.layout.layout_two, null);
return root;
}
void setMessage(String msg){
TextView txt=(TextView)root.findViewById(R.id.textView1);
txt.setText(msg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment