Skip to content
Snippets Groups Projects
Commit 45bff16c authored by Ilham Firdausi Putra's avatar Ilham Firdausi Putra
Browse files

remove redundant variable on profile, home, and bot fragment

parent b1d5b1d2
Branches
No related merge requests found
...@@ -18,14 +18,6 @@ import android.view.ViewGroup; ...@@ -18,14 +18,6 @@ import android.view.ViewGroup;
* create an instance of this fragment. * create an instance of this fragment.
*/ */
public class BotFragment extends Fragment { public class BotFragment extends Fragment {
// TODO: Rename parameter arguments, choose names that match
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
private static final String ARG_PARAM1 = "param1";
private static final String ARG_PARAM2 = "param2";
// TODO: Rename and change types of parameters
private String mParam1;
private String mParam2;
private OnFragmentInteractionListener mListener; private OnFragmentInteractionListener mListener;
...@@ -33,41 +25,25 @@ public class BotFragment extends Fragment { ...@@ -33,41 +25,25 @@ public class BotFragment extends Fragment {
// Required empty public constructor // Required empty public constructor
} }
/**
* Use this factory method to create a new instance of public static BotFragment newInstance() {
* this fragment using the provided parameters.
*
* @param param1 Parameter 1.
* @param param2 Parameter 2.
* @return A new instance of fragment BotFragment.
*/
// TODO: Rename and change types and number of parameters
public static BotFragment newInstance(String param1, String param2) {
BotFragment fragment = new BotFragment(); BotFragment fragment = new BotFragment();
Bundle args = new Bundle();
args.putString(ARG_PARAM1, param1);
args.putString(ARG_PARAM2, param2);
fragment.setArguments(args);
return fragment; return fragment;
} }
@Override @Override
public void onCreate(Bundle savedInstanceState) { public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
if (getArguments() != null) {
mParam1 = getArguments().getString(ARG_PARAM1);
mParam2 = getArguments().getString(ARG_PARAM2);
}
} }
@Override @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) { Bundle savedInstanceState) {
// Inflate the layout for this fragment // Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_bot, container, false); return inflater.inflate(R.layout.fragment_bot, container, false);
} }
// TODO: Rename method, update argument and hook method into UI event
public void onButtonPressed(Uri uri) { public void onButtonPressed(Uri uri) {
if (mListener != null) { if (mListener != null) {
mListener.onFragmentInteraction(uri); mListener.onFragmentInteraction(uri);
......
...@@ -64,7 +64,6 @@ public class HomeFragment extends Fragment { ...@@ -64,7 +64,6 @@ public class HomeFragment extends Fragment {
return view; return view;
} }
// TODO: Rename method, update argument and hook method into UI event
public void onButtonPressed(Uri uri) { public void onButtonPressed(Uri uri) {
if (mListener != null) { if (mListener != null) {
mListener.onFragmentInteraction(uri); mListener.onFragmentInteraction(uri);
......
...@@ -40,8 +40,6 @@ public class MainActivity extends AppCompatActivity implements ...@@ -40,8 +40,6 @@ public class MainActivity extends AppCompatActivity implements
private Context context; private Context context;
private BottomNavigationView bottomNavbar; private BottomNavigationView bottomNavbar;
private Fragment fragment;
private BottomNavigationView.OnNavigationItemSelectedListener mOnNavigationItemSelectedListener private BottomNavigationView.OnNavigationItemSelectedListener mOnNavigationItemSelectedListener
= new BottomNavigationView.OnNavigationItemSelectedListener() { = new BottomNavigationView.OnNavigationItemSelectedListener() {
...@@ -89,13 +87,6 @@ public class MainActivity extends AppCompatActivity implements ...@@ -89,13 +87,6 @@ public class MainActivity extends AppCompatActivity implements
} }
} }
// @Override
// public boolean onCreateOptionsMenu(Menu menu) {
// // Inflate the menu; this adds items to the action bar if it is present.
// getMenuInflater().inflate(R.menu.main, menu);
// return true;
// }
public boolean loadFragment(Fragment fragment) { public boolean loadFragment(Fragment fragment) {
......
...@@ -29,14 +29,6 @@ import org.w3c.dom.Text; ...@@ -29,14 +29,6 @@ import org.w3c.dom.Text;
* create an instance of this fragment. * create an instance of this fragment.
*/ */
public class ProfileFragment extends Fragment { public class ProfileFragment extends Fragment {
// TODO: Rename parameter arguments, choose names that match
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
private static final String ARG_PARAM1 = "param1";
private static final String ARG_PARAM2 = "param2";
// TODO: Rename and change types of parameters
private String mParam1;
private String mParam2;
private ImageView profileImage; private ImageView profileImage;
private TextView profileName; private TextView profileName;
private Button buttonLogout; private Button buttonLogout;
...@@ -47,21 +39,8 @@ public class ProfileFragment extends Fragment { ...@@ -47,21 +39,8 @@ public class ProfileFragment extends Fragment {
// Required empty public constructor // Required empty public constructor
} }
/** public static ProfileFragment newInstance() {
* Use this factory method to create a new instance of
* this fragment using the provided parameters.
*
* @param param1 Parameter 1.
* @param param2 Parameter 2.
* @return A new instance of fragment ProfileFragment.
*/
// TODO: Rename and change types and number of parameters
public static ProfileFragment newInstance(String param1, String param2) {
ProfileFragment fragment = new ProfileFragment(); ProfileFragment fragment = new ProfileFragment();
Bundle args = new Bundle();
args.putString(ARG_PARAM1, param1);
args.putString(ARG_PARAM2, param2);
fragment.setArguments(args);
return fragment; return fragment;
} }
...@@ -106,7 +85,6 @@ public class ProfileFragment extends Fragment { ...@@ -106,7 +85,6 @@ public class ProfileFragment extends Fragment {
} }
// TODO: Rename method, update argument and hook method into UI event
public void onButtonPressed(Uri uri) { public void onButtonPressed(Uri uri) {
if (mListener != null) { if (mListener != null) {
mListener.onFragmentInteraction(uri); mListener.onFragmentInteraction(uri);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment