blob: 3a84c99e708bfa0c358088ecd3f6cbc3b1569a6a [file] [log] [blame]
package org.sflphone.fragments;
import org.sflphone.R;
import android.os.Bundle;
import android.app.Fragment;
import android.text.Html;
import android.text.method.LinkMovementMethod;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
public class AboutFragment extends Fragment {
@Override
public void onResume() {
super.onResume();
getActivity().getActionBar().setTitle(R.string.menu_item_about);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState) {
View inflatedView = inflater.inflate(R.layout.frag_about, parent, false);
TextView link = (TextView) inflatedView.findViewById(R.id.web_site);
String linkText = "<a href='http://sflphone.org/'>" + getResources().getString(R.string.web_site) + "</a>";
link.setText(Html.fromHtml(linkText));
link.setMovementMethod(LinkMovementMethod.getInstance());
return inflatedView;
}
}