Get TextView data of fragment from Activity











up vote
0
down vote

favorite












I want pass data from textview fields of my fragment to activity method who insert data to sqlite data base.



This is my fragment with TextView:



    public class BandasFragment extends Fragment {

private EditText et_codigo, et_nombre, et_genero, et_descripcion;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {

// Inflate the layout for this fragment
View vistaBandas = inflater.inflate(R.layout.fragment_bandas, container, false);

et_codigo = (EditText)vistaBandas.findViewById(R.id.txt_codigo);
et_nombre = (EditText)vistaBandas.findViewById(R.id.txt_nombre);
et_genero = (EditText)vistaBandas.findViewById(R.id.txt_genero);
et_descripcion = (EditText)vistaBandas.findViewById(R.id.txt_descripcion);



return vistaBandas;
}
}


This is method of my activity who insert data to SQlite database. So i need comunicate from this method to TextView fields of fragment or trasport data from fragment to this method.



public void Registrar(View view){

AdminSQLiteOpenHelper admin = new AdminSQLiteOpenHelper(this, "administracion", null, 1);
SQLiteDatabase BaseDeDatos = admin.getWritableDatabase();

String codigo = et_codigo.getText().toString();
String nombre = et_nombre.getText().toString();
String genero = et_genero.getText().toString();
String descripcion = et_descripcion.getText().toString();


if(!codigo.isEmpty()){
ContentValues registro = new ContentValues();

registro.put("codigo", codigo);
registro.put("nombre", nombre);
registro.put("genero", genero);
registro.put("descripcion", descripcion);


BaseDeDatos.insert("banda", null, registro);

BaseDeDatos.close();
et_codigo.setText("");
et_nombre.setText("");
et_genero.setText("");
et_descripcion.setText("");


Toast.makeText(this,"Registro exitoso", Toast.LENGTH_SHORT).show();
} else{
Toast.makeText(this,"Debes llenar todos los campos",Toast.LENGTH_SHORT).show();
}
}









share|improve this question




















  • 2




    Possible duplicate of Passing data between a fragment and its container activity
    – Vadim Eksler
    Nov 19 at 13:10










  • You can use BroadcastReceiver , or Interface . and have a look at This question also.
    – Rumit Patel
    Nov 19 at 13:12















up vote
0
down vote

favorite












I want pass data from textview fields of my fragment to activity method who insert data to sqlite data base.



This is my fragment with TextView:



    public class BandasFragment extends Fragment {

private EditText et_codigo, et_nombre, et_genero, et_descripcion;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {

// Inflate the layout for this fragment
View vistaBandas = inflater.inflate(R.layout.fragment_bandas, container, false);

et_codigo = (EditText)vistaBandas.findViewById(R.id.txt_codigo);
et_nombre = (EditText)vistaBandas.findViewById(R.id.txt_nombre);
et_genero = (EditText)vistaBandas.findViewById(R.id.txt_genero);
et_descripcion = (EditText)vistaBandas.findViewById(R.id.txt_descripcion);



return vistaBandas;
}
}


This is method of my activity who insert data to SQlite database. So i need comunicate from this method to TextView fields of fragment or trasport data from fragment to this method.



public void Registrar(View view){

AdminSQLiteOpenHelper admin = new AdminSQLiteOpenHelper(this, "administracion", null, 1);
SQLiteDatabase BaseDeDatos = admin.getWritableDatabase();

String codigo = et_codigo.getText().toString();
String nombre = et_nombre.getText().toString();
String genero = et_genero.getText().toString();
String descripcion = et_descripcion.getText().toString();


if(!codigo.isEmpty()){
ContentValues registro = new ContentValues();

registro.put("codigo", codigo);
registro.put("nombre", nombre);
registro.put("genero", genero);
registro.put("descripcion", descripcion);


BaseDeDatos.insert("banda", null, registro);

BaseDeDatos.close();
et_codigo.setText("");
et_nombre.setText("");
et_genero.setText("");
et_descripcion.setText("");


Toast.makeText(this,"Registro exitoso", Toast.LENGTH_SHORT).show();
} else{
Toast.makeText(this,"Debes llenar todos los campos",Toast.LENGTH_SHORT).show();
}
}









share|improve this question




















  • 2




    Possible duplicate of Passing data between a fragment and its container activity
    – Vadim Eksler
    Nov 19 at 13:10










  • You can use BroadcastReceiver , or Interface . and have a look at This question also.
    – Rumit Patel
    Nov 19 at 13:12













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I want pass data from textview fields of my fragment to activity method who insert data to sqlite data base.



This is my fragment with TextView:



    public class BandasFragment extends Fragment {

private EditText et_codigo, et_nombre, et_genero, et_descripcion;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {

// Inflate the layout for this fragment
View vistaBandas = inflater.inflate(R.layout.fragment_bandas, container, false);

et_codigo = (EditText)vistaBandas.findViewById(R.id.txt_codigo);
et_nombre = (EditText)vistaBandas.findViewById(R.id.txt_nombre);
et_genero = (EditText)vistaBandas.findViewById(R.id.txt_genero);
et_descripcion = (EditText)vistaBandas.findViewById(R.id.txt_descripcion);



return vistaBandas;
}
}


This is method of my activity who insert data to SQlite database. So i need comunicate from this method to TextView fields of fragment or trasport data from fragment to this method.



public void Registrar(View view){

AdminSQLiteOpenHelper admin = new AdminSQLiteOpenHelper(this, "administracion", null, 1);
SQLiteDatabase BaseDeDatos = admin.getWritableDatabase();

String codigo = et_codigo.getText().toString();
String nombre = et_nombre.getText().toString();
String genero = et_genero.getText().toString();
String descripcion = et_descripcion.getText().toString();


if(!codigo.isEmpty()){
ContentValues registro = new ContentValues();

registro.put("codigo", codigo);
registro.put("nombre", nombre);
registro.put("genero", genero);
registro.put("descripcion", descripcion);


BaseDeDatos.insert("banda", null, registro);

BaseDeDatos.close();
et_codigo.setText("");
et_nombre.setText("");
et_genero.setText("");
et_descripcion.setText("");


Toast.makeText(this,"Registro exitoso", Toast.LENGTH_SHORT).show();
} else{
Toast.makeText(this,"Debes llenar todos los campos",Toast.LENGTH_SHORT).show();
}
}









share|improve this question















I want pass data from textview fields of my fragment to activity method who insert data to sqlite data base.



This is my fragment with TextView:



    public class BandasFragment extends Fragment {

private EditText et_codigo, et_nombre, et_genero, et_descripcion;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {

// Inflate the layout for this fragment
View vistaBandas = inflater.inflate(R.layout.fragment_bandas, container, false);

et_codigo = (EditText)vistaBandas.findViewById(R.id.txt_codigo);
et_nombre = (EditText)vistaBandas.findViewById(R.id.txt_nombre);
et_genero = (EditText)vistaBandas.findViewById(R.id.txt_genero);
et_descripcion = (EditText)vistaBandas.findViewById(R.id.txt_descripcion);



return vistaBandas;
}
}


This is method of my activity who insert data to SQlite database. So i need comunicate from this method to TextView fields of fragment or trasport data from fragment to this method.



public void Registrar(View view){

AdminSQLiteOpenHelper admin = new AdminSQLiteOpenHelper(this, "administracion", null, 1);
SQLiteDatabase BaseDeDatos = admin.getWritableDatabase();

String codigo = et_codigo.getText().toString();
String nombre = et_nombre.getText().toString();
String genero = et_genero.getText().toString();
String descripcion = et_descripcion.getText().toString();


if(!codigo.isEmpty()){
ContentValues registro = new ContentValues();

registro.put("codigo", codigo);
registro.put("nombre", nombre);
registro.put("genero", genero);
registro.put("descripcion", descripcion);


BaseDeDatos.insert("banda", null, registro);

BaseDeDatos.close();
et_codigo.setText("");
et_nombre.setText("");
et_genero.setText("");
et_descripcion.setText("");


Toast.makeText(this,"Registro exitoso", Toast.LENGTH_SHORT).show();
} else{
Toast.makeText(this,"Debes llenar todos los campos",Toast.LENGTH_SHORT).show();
}
}






android






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 20 at 9:10









Mushtak

968




968










asked Nov 19 at 13:06









Oren Diaz

1014




1014








  • 2




    Possible duplicate of Passing data between a fragment and its container activity
    – Vadim Eksler
    Nov 19 at 13:10










  • You can use BroadcastReceiver , or Interface . and have a look at This question also.
    – Rumit Patel
    Nov 19 at 13:12














  • 2




    Possible duplicate of Passing data between a fragment and its container activity
    – Vadim Eksler
    Nov 19 at 13:10










  • You can use BroadcastReceiver , or Interface . and have a look at This question also.
    – Rumit Patel
    Nov 19 at 13:12








2




2




Possible duplicate of Passing data between a fragment and its container activity
– Vadim Eksler
Nov 19 at 13:10




Possible duplicate of Passing data between a fragment and its container activity
– Vadim Eksler
Nov 19 at 13:10












You can use BroadcastReceiver , or Interface . and have a look at This question also.
– Rumit Patel
Nov 19 at 13:12




You can use BroadcastReceiver , or Interface . and have a look at This question also.
– Rumit Patel
Nov 19 at 13:12












2 Answers
2






active

oldest

votes

















up vote
1
down vote













We can access data from fragment textview by creating interface which is mediator bw activity and fragment





  1. First you need to create an interface with method.(DataFromFragment.java)



    public interface TestListener {
    public String listener(String result;
    }




2.in this step you need to override onAttach Method in Fragment in that method we will get parent activity context. so we can direct get interface method.



   public void onAttach(Context context) {
super.onAttach(context);
try {
mListener = (TestListener) context;
} catch (ClassCastException e) {
throw new ClassCastException(context.toString() + e.getMessage());
}
}


3.in this step you need implement interface in activity.



public void listener(String result) {
Toast.makeText(this, result, Toast.LENGTH_SHORT).show();
}



  1. in this step you call interface method from fragment method.


public void returnData() {
mListener.listener("Ashok");
}





  1. finally call returndata() method from activity to get result from fragment



    FragmentManager fm = getFragmentManager();
    BlankFragment f2 = (BlankFragment) fm.findFragmentById(R.id.fragment);
    f2.returnData();








share|improve this answer























  • DataFromFragment' is abstract; cannot be instantiated - in step 3
    – Oren Diaz
    Nov 19 at 13:51












  • Please check this edit code working fine. keep vote
    – Ashok Reddy M
    Nov 20 at 7:31




















up vote
0
down vote













If your fragment is under the same activity where you want to send data then just make a new method or update your Registrar method in your activity and your fragment is part of this activity already so just access this method in fragment and pass your value via method. your BandasFragment will be like this:



public class BandasFragment extends Fragment {

private EditText et_codigo, et_nombre, et_genero, et_descripcion;
RegistrarActivity registrarActivity;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {

// Inflate the layout for this fragment
View vistaBandas = inflater.inflate(R.layout.fragment_bandas, container, false);

et_codigo = (EditText)vistaBandas.findViewById(R.id.txt_codigo);
et_nombre = (EditText)vistaBandas.findViewById(R.id.txt_nombre);
et_genero = (EditText)vistaBandas.findViewById(R.id.txt_genero);
et_descripcion = (EditText)vistaBandas.findViewById(R.id.txt_descripcion);


registrarActivity = (RegistrarActivity) getActivity();
registrarActivity.getData(et_codigo.getText().toString(),
et_nombre.getText().toString(),
et_genero.getText().toString(),
et_descripcion.getText().toString());

return vistaBandas;
}


and your class will look like this:



public class RegistrarActivity extends AppCompatActivity {

String codigo,nombre,genero,descripcion;

public void Registrar(View view){

AdminSQLiteOpenHelper admin = new AdminSQLiteOpenHelper(this, "administracion", null, 1);
SQLiteDatabase BaseDeDatos = admin.getWritableDatabase();



if(!codigo.isEmpty()){
ContentValues registro = new ContentValues();

registro.put("codigo", codigo);
registro.put("nombre", nombre);
registro.put("genero", genero);
registro.put("descripcion", descripcion);


BaseDeDatos.insert("banda", null, registro);

BaseDeDatos.close();
et_codigo.setText("");
et_nombre.setText("");
et_genero.setText("");
et_descripcion.setText("");


Toast.makeText(this,"Registro exitoso", Toast.LENGTH_SHORT).show();
} else{
Toast.makeText(this,"Debes llenar todos los campos",Toast.LENGTH_SHORT).show();
}
}

public void getData(String codigo,String nombre,String genero,String descripcion){
this.codigo = codigo;
this.nombre = nombre;
this.genero = genero;
this.descripcion = descripcion;
}


}






share|improve this answer








New contributor




Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


















    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














     

    draft saved


    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53375324%2fget-textview-data-of-fragment-from-activity%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    1
    down vote













    We can access data from fragment textview by creating interface which is mediator bw activity and fragment





    1. First you need to create an interface with method.(DataFromFragment.java)



      public interface TestListener {
      public String listener(String result;
      }




    2.in this step you need to override onAttach Method in Fragment in that method we will get parent activity context. so we can direct get interface method.



       public void onAttach(Context context) {
    super.onAttach(context);
    try {
    mListener = (TestListener) context;
    } catch (ClassCastException e) {
    throw new ClassCastException(context.toString() + e.getMessage());
    }
    }


    3.in this step you need implement interface in activity.



    public void listener(String result) {
    Toast.makeText(this, result, Toast.LENGTH_SHORT).show();
    }



    1. in this step you call interface method from fragment method.


    public void returnData() {
    mListener.listener("Ashok");
    }





    1. finally call returndata() method from activity to get result from fragment



      FragmentManager fm = getFragmentManager();
      BlankFragment f2 = (BlankFragment) fm.findFragmentById(R.id.fragment);
      f2.returnData();








    share|improve this answer























    • DataFromFragment' is abstract; cannot be instantiated - in step 3
      – Oren Diaz
      Nov 19 at 13:51












    • Please check this edit code working fine. keep vote
      – Ashok Reddy M
      Nov 20 at 7:31

















    up vote
    1
    down vote













    We can access data from fragment textview by creating interface which is mediator bw activity and fragment





    1. First you need to create an interface with method.(DataFromFragment.java)



      public interface TestListener {
      public String listener(String result;
      }




    2.in this step you need to override onAttach Method in Fragment in that method we will get parent activity context. so we can direct get interface method.



       public void onAttach(Context context) {
    super.onAttach(context);
    try {
    mListener = (TestListener) context;
    } catch (ClassCastException e) {
    throw new ClassCastException(context.toString() + e.getMessage());
    }
    }


    3.in this step you need implement interface in activity.



    public void listener(String result) {
    Toast.makeText(this, result, Toast.LENGTH_SHORT).show();
    }



    1. in this step you call interface method from fragment method.


    public void returnData() {
    mListener.listener("Ashok");
    }





    1. finally call returndata() method from activity to get result from fragment



      FragmentManager fm = getFragmentManager();
      BlankFragment f2 = (BlankFragment) fm.findFragmentById(R.id.fragment);
      f2.returnData();








    share|improve this answer























    • DataFromFragment' is abstract; cannot be instantiated - in step 3
      – Oren Diaz
      Nov 19 at 13:51












    • Please check this edit code working fine. keep vote
      – Ashok Reddy M
      Nov 20 at 7:31















    up vote
    1
    down vote










    up vote
    1
    down vote









    We can access data from fragment textview by creating interface which is mediator bw activity and fragment





    1. First you need to create an interface with method.(DataFromFragment.java)



      public interface TestListener {
      public String listener(String result;
      }




    2.in this step you need to override onAttach Method in Fragment in that method we will get parent activity context. so we can direct get interface method.



       public void onAttach(Context context) {
    super.onAttach(context);
    try {
    mListener = (TestListener) context;
    } catch (ClassCastException e) {
    throw new ClassCastException(context.toString() + e.getMessage());
    }
    }


    3.in this step you need implement interface in activity.



    public void listener(String result) {
    Toast.makeText(this, result, Toast.LENGTH_SHORT).show();
    }



    1. in this step you call interface method from fragment method.


    public void returnData() {
    mListener.listener("Ashok");
    }





    1. finally call returndata() method from activity to get result from fragment



      FragmentManager fm = getFragmentManager();
      BlankFragment f2 = (BlankFragment) fm.findFragmentById(R.id.fragment);
      f2.returnData();








    share|improve this answer














    We can access data from fragment textview by creating interface which is mediator bw activity and fragment





    1. First you need to create an interface with method.(DataFromFragment.java)



      public interface TestListener {
      public String listener(String result;
      }




    2.in this step you need to override onAttach Method in Fragment in that method we will get parent activity context. so we can direct get interface method.



       public void onAttach(Context context) {
    super.onAttach(context);
    try {
    mListener = (TestListener) context;
    } catch (ClassCastException e) {
    throw new ClassCastException(context.toString() + e.getMessage());
    }
    }


    3.in this step you need implement interface in activity.



    public void listener(String result) {
    Toast.makeText(this, result, Toast.LENGTH_SHORT).show();
    }



    1. in this step you call interface method from fragment method.


    public void returnData() {
    mListener.listener("Ashok");
    }





    1. finally call returndata() method from activity to get result from fragment



      FragmentManager fm = getFragmentManager();
      BlankFragment f2 = (BlankFragment) fm.findFragmentById(R.id.fragment);
      f2.returnData();









    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Nov 20 at 7:30

























    answered Nov 19 at 13:33









    Ashok Reddy M

    9914




    9914












    • DataFromFragment' is abstract; cannot be instantiated - in step 3
      – Oren Diaz
      Nov 19 at 13:51












    • Please check this edit code working fine. keep vote
      – Ashok Reddy M
      Nov 20 at 7:31




















    • DataFromFragment' is abstract; cannot be instantiated - in step 3
      – Oren Diaz
      Nov 19 at 13:51












    • Please check this edit code working fine. keep vote
      – Ashok Reddy M
      Nov 20 at 7:31


















    DataFromFragment' is abstract; cannot be instantiated - in step 3
    – Oren Diaz
    Nov 19 at 13:51






    DataFromFragment' is abstract; cannot be instantiated - in step 3
    – Oren Diaz
    Nov 19 at 13:51














    Please check this edit code working fine. keep vote
    – Ashok Reddy M
    Nov 20 at 7:31






    Please check this edit code working fine. keep vote
    – Ashok Reddy M
    Nov 20 at 7:31














    up vote
    0
    down vote













    If your fragment is under the same activity where you want to send data then just make a new method or update your Registrar method in your activity and your fragment is part of this activity already so just access this method in fragment and pass your value via method. your BandasFragment will be like this:



    public class BandasFragment extends Fragment {

    private EditText et_codigo, et_nombre, et_genero, et_descripcion;
    RegistrarActivity registrarActivity;
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
    Bundle savedInstanceState) {

    // Inflate the layout for this fragment
    View vistaBandas = inflater.inflate(R.layout.fragment_bandas, container, false);

    et_codigo = (EditText)vistaBandas.findViewById(R.id.txt_codigo);
    et_nombre = (EditText)vistaBandas.findViewById(R.id.txt_nombre);
    et_genero = (EditText)vistaBandas.findViewById(R.id.txt_genero);
    et_descripcion = (EditText)vistaBandas.findViewById(R.id.txt_descripcion);


    registrarActivity = (RegistrarActivity) getActivity();
    registrarActivity.getData(et_codigo.getText().toString(),
    et_nombre.getText().toString(),
    et_genero.getText().toString(),
    et_descripcion.getText().toString());

    return vistaBandas;
    }


    and your class will look like this:



    public class RegistrarActivity extends AppCompatActivity {

    String codigo,nombre,genero,descripcion;

    public void Registrar(View view){

    AdminSQLiteOpenHelper admin = new AdminSQLiteOpenHelper(this, "administracion", null, 1);
    SQLiteDatabase BaseDeDatos = admin.getWritableDatabase();



    if(!codigo.isEmpty()){
    ContentValues registro = new ContentValues();

    registro.put("codigo", codigo);
    registro.put("nombre", nombre);
    registro.put("genero", genero);
    registro.put("descripcion", descripcion);


    BaseDeDatos.insert("banda", null, registro);

    BaseDeDatos.close();
    et_codigo.setText("");
    et_nombre.setText("");
    et_genero.setText("");
    et_descripcion.setText("");


    Toast.makeText(this,"Registro exitoso", Toast.LENGTH_SHORT).show();
    } else{
    Toast.makeText(this,"Debes llenar todos los campos",Toast.LENGTH_SHORT).show();
    }
    }

    public void getData(String codigo,String nombre,String genero,String descripcion){
    this.codigo = codigo;
    this.nombre = nombre;
    this.genero = genero;
    this.descripcion = descripcion;
    }


    }






    share|improve this answer








    New contributor




    Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      up vote
      0
      down vote













      If your fragment is under the same activity where you want to send data then just make a new method or update your Registrar method in your activity and your fragment is part of this activity already so just access this method in fragment and pass your value via method. your BandasFragment will be like this:



      public class BandasFragment extends Fragment {

      private EditText et_codigo, et_nombre, et_genero, et_descripcion;
      RegistrarActivity registrarActivity;
      @Override
      public View onCreateView(LayoutInflater inflater, ViewGroup container,
      Bundle savedInstanceState) {

      // Inflate the layout for this fragment
      View vistaBandas = inflater.inflate(R.layout.fragment_bandas, container, false);

      et_codigo = (EditText)vistaBandas.findViewById(R.id.txt_codigo);
      et_nombre = (EditText)vistaBandas.findViewById(R.id.txt_nombre);
      et_genero = (EditText)vistaBandas.findViewById(R.id.txt_genero);
      et_descripcion = (EditText)vistaBandas.findViewById(R.id.txt_descripcion);


      registrarActivity = (RegistrarActivity) getActivity();
      registrarActivity.getData(et_codigo.getText().toString(),
      et_nombre.getText().toString(),
      et_genero.getText().toString(),
      et_descripcion.getText().toString());

      return vistaBandas;
      }


      and your class will look like this:



      public class RegistrarActivity extends AppCompatActivity {

      String codigo,nombre,genero,descripcion;

      public void Registrar(View view){

      AdminSQLiteOpenHelper admin = new AdminSQLiteOpenHelper(this, "administracion", null, 1);
      SQLiteDatabase BaseDeDatos = admin.getWritableDatabase();



      if(!codigo.isEmpty()){
      ContentValues registro = new ContentValues();

      registro.put("codigo", codigo);
      registro.put("nombre", nombre);
      registro.put("genero", genero);
      registro.put("descripcion", descripcion);


      BaseDeDatos.insert("banda", null, registro);

      BaseDeDatos.close();
      et_codigo.setText("");
      et_nombre.setText("");
      et_genero.setText("");
      et_descripcion.setText("");


      Toast.makeText(this,"Registro exitoso", Toast.LENGTH_SHORT).show();
      } else{
      Toast.makeText(this,"Debes llenar todos los campos",Toast.LENGTH_SHORT).show();
      }
      }

      public void getData(String codigo,String nombre,String genero,String descripcion){
      this.codigo = codigo;
      this.nombre = nombre;
      this.genero = genero;
      this.descripcion = descripcion;
      }


      }






      share|improve this answer








      New contributor




      Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















        up vote
        0
        down vote










        up vote
        0
        down vote









        If your fragment is under the same activity where you want to send data then just make a new method or update your Registrar method in your activity and your fragment is part of this activity already so just access this method in fragment and pass your value via method. your BandasFragment will be like this:



        public class BandasFragment extends Fragment {

        private EditText et_codigo, et_nombre, et_genero, et_descripcion;
        RegistrarActivity registrarActivity;
        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {

        // Inflate the layout for this fragment
        View vistaBandas = inflater.inflate(R.layout.fragment_bandas, container, false);

        et_codigo = (EditText)vistaBandas.findViewById(R.id.txt_codigo);
        et_nombre = (EditText)vistaBandas.findViewById(R.id.txt_nombre);
        et_genero = (EditText)vistaBandas.findViewById(R.id.txt_genero);
        et_descripcion = (EditText)vistaBandas.findViewById(R.id.txt_descripcion);


        registrarActivity = (RegistrarActivity) getActivity();
        registrarActivity.getData(et_codigo.getText().toString(),
        et_nombre.getText().toString(),
        et_genero.getText().toString(),
        et_descripcion.getText().toString());

        return vistaBandas;
        }


        and your class will look like this:



        public class RegistrarActivity extends AppCompatActivity {

        String codigo,nombre,genero,descripcion;

        public void Registrar(View view){

        AdminSQLiteOpenHelper admin = new AdminSQLiteOpenHelper(this, "administracion", null, 1);
        SQLiteDatabase BaseDeDatos = admin.getWritableDatabase();



        if(!codigo.isEmpty()){
        ContentValues registro = new ContentValues();

        registro.put("codigo", codigo);
        registro.put("nombre", nombre);
        registro.put("genero", genero);
        registro.put("descripcion", descripcion);


        BaseDeDatos.insert("banda", null, registro);

        BaseDeDatos.close();
        et_codigo.setText("");
        et_nombre.setText("");
        et_genero.setText("");
        et_descripcion.setText("");


        Toast.makeText(this,"Registro exitoso", Toast.LENGTH_SHORT).show();
        } else{
        Toast.makeText(this,"Debes llenar todos los campos",Toast.LENGTH_SHORT).show();
        }
        }

        public void getData(String codigo,String nombre,String genero,String descripcion){
        this.codigo = codigo;
        this.nombre = nombre;
        this.genero = genero;
        this.descripcion = descripcion;
        }


        }






        share|improve this answer








        New contributor




        Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        If your fragment is under the same activity where you want to send data then just make a new method or update your Registrar method in your activity and your fragment is part of this activity already so just access this method in fragment and pass your value via method. your BandasFragment will be like this:



        public class BandasFragment extends Fragment {

        private EditText et_codigo, et_nombre, et_genero, et_descripcion;
        RegistrarActivity registrarActivity;
        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {

        // Inflate the layout for this fragment
        View vistaBandas = inflater.inflate(R.layout.fragment_bandas, container, false);

        et_codigo = (EditText)vistaBandas.findViewById(R.id.txt_codigo);
        et_nombre = (EditText)vistaBandas.findViewById(R.id.txt_nombre);
        et_genero = (EditText)vistaBandas.findViewById(R.id.txt_genero);
        et_descripcion = (EditText)vistaBandas.findViewById(R.id.txt_descripcion);


        registrarActivity = (RegistrarActivity) getActivity();
        registrarActivity.getData(et_codigo.getText().toString(),
        et_nombre.getText().toString(),
        et_genero.getText().toString(),
        et_descripcion.getText().toString());

        return vistaBandas;
        }


        and your class will look like this:



        public class RegistrarActivity extends AppCompatActivity {

        String codigo,nombre,genero,descripcion;

        public void Registrar(View view){

        AdminSQLiteOpenHelper admin = new AdminSQLiteOpenHelper(this, "administracion", null, 1);
        SQLiteDatabase BaseDeDatos = admin.getWritableDatabase();



        if(!codigo.isEmpty()){
        ContentValues registro = new ContentValues();

        registro.put("codigo", codigo);
        registro.put("nombre", nombre);
        registro.put("genero", genero);
        registro.put("descripcion", descripcion);


        BaseDeDatos.insert("banda", null, registro);

        BaseDeDatos.close();
        et_codigo.setText("");
        et_nombre.setText("");
        et_genero.setText("");
        et_descripcion.setText("");


        Toast.makeText(this,"Registro exitoso", Toast.LENGTH_SHORT).show();
        } else{
        Toast.makeText(this,"Debes llenar todos los campos",Toast.LENGTH_SHORT).show();
        }
        }

        public void getData(String codigo,String nombre,String genero,String descripcion){
        this.codigo = codigo;
        this.nombre = nombre;
        this.genero = genero;
        this.descripcion = descripcion;
        }


        }







        share|improve this answer








        New contributor




        Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        share|improve this answer



        share|improve this answer






        New contributor




        Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        answered Nov 19 at 13:27









        Taha wakeel

        866




        866




        New contributor




        Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.





        New contributor





        Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






        Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






























             

            draft saved


            draft discarded



















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53375324%2fget-textview-data-of-fragment-from-activity%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            404 Error Contact Form 7 ajax form submitting

            How to know if a Active Directory user can login interactively

            TypeError: fit_transform() missing 1 required positional argument: 'X'