diff options
Diffstat (limited to 'src/de/blinkt/openvpn')
-rw-r--r-- | src/de/blinkt/openvpn/FaqFragment.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/de/blinkt/openvpn/FaqFragment.java b/src/de/blinkt/openvpn/FaqFragment.java index 26979946..09c6cbdc 100644 --- a/src/de/blinkt/openvpn/FaqFragment.java +++ b/src/de/blinkt/openvpn/FaqFragment.java @@ -2,9 +2,12 @@ package de.blinkt.openvpn; import android.app.Fragment; import android.os.Bundle; +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 FaqFragment extends Fragment { @@ -18,6 +21,10 @@ public class FaqFragment extends Fragment { public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View v= inflater.inflate(R.layout.faq, container, false); + + TextView bImages = (TextView) v.findViewById(R.id.brokenimages); + bImages.setText(Html.fromHtml(getActivity().getString(R.string.broken_images_faq))); + bImages.setMovementMethod(LinkMovementMethod.getInstance()); return v; } |