Back to project page mint.
The source code is released under:
GNU General Public License
If you think the Android project mint listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.gmail.altakey.mint.fragment; /*from w ww . j a va2s . co m*/ import android.content.Intent; import android.os.Bundle; import android.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.gmail.altakey.mint.R; import com.gmail.altakey.mint.activity.ConfigActivity; public class WelcomeFragment extends Fragment { public static WelcomeFragment newInstance() { return new WelcomeFragment(); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup root, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.welcome, root, false); view.findViewById(R.id.tap_to_set_login).setOnClickListener(new SetLoginAction()); return view; } public class SetLoginAction implements View.OnClickListener { @Override public void onClick(View v) { startActivity(new Intent(getActivity(), ConfigActivity.class)); } } }