Esta es el arreglo más acertada que encomtrarás brindar, pero mírala pausadamente y valora si se puede adaptar a tu proyecto.
Solución:
Puede reemplazar el fragmento usando FragmentTransaction al hacer clic en el botón. Algo como esto:
Fragment someFragment = new SomeFragment();
FragmentTransaction transaction = getFragmentManager().beginTransaction();
transaction.replace(R.id.fragment_container, someFragment ); // give your fragment container id in first parameter
transaction.addToBackStack(null); // if written, this transaction will be added to backstack
transaction.commit();
Obtenga información sobre cómo realizar transacciones de fragmentos aquí.
código:
package com.rupomkhondaker.sonalibank;
import android.app.Fragment;
import android.app.FragmentTransaction;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
public class HomeFragment extends Fragment implements View.OnClickListener
public HomeFragment()
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
View rootView = inflater.inflate(R.layout.fragment_home, container, false);
Button aboutBtn = (Button) rootView.findViewById(R.id.aboutusButton);
Button phonebookBtn = (Button) rootView.findViewById(R.id.phbookButton);
aboutBtn.setOnClickListener(this);
phonebookBtn.setOnClickListener(this);
return rootView;
@Override
public void onClick(View view)
Fragment fragment = null;
switch (view.getId())
case R.id.aboutusButton:
fragment = new AboutFragment();
replaceFragment(fragment);
break;
case R.id.phbookButton:
fragment = new PhoneBookFragment();
replaceFragment(fragment);
break;
public void replaceFragment(Fragment someFragment)
FragmentTransaction transaction = getFragmentManager().beginTransaction();
transaction.replace(R.id.frame_container, someFragment);
transaction.addToBackStack(null);
transaction.commit();
Tienes la posibilidad comunicar este enunciado si te ayudó.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)