Back to project page AQUArinthia.
The source code is released under:
GNU General Public License
If you think the Android project AQUArinthia 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 at.theengine.android.aquarinthhia; /*from w w w . j a v a2 s .c o m*/ import android.os.Bundle; import android.support.v4.app.Fragment; import android.text.util.Linkify; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; public class InfoFragment extends Fragment { public InfoFragment() {} @Override public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.fragment_info, container, false); TextView tvAuthorLinks = (TextView) rootView.findViewById(R.id.tvAuthorLinks); TextView tvOGDLinks = (TextView) rootView.findViewById(R.id.tvOGDLinks); Linkify.addLinks(tvAuthorLinks, Linkify.ALL); Linkify.addLinks(tvOGDLinks, Linkify.ALL); return rootView; } }