diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-05-23 16:47:47 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-05-23 16:47:47 +0200 |
commit | 6a3ab893b30a0627c1bb89e5823f38437941d83e (patch) | |
tree | e215b41a795926dd408b81d3e39da0d3f047cd08 /src | |
parent | f66032ebe5ada1f4d811270cd84e9378ca41b740 (diff) |
Finetune FAQ, change font sizes, add Information about broken Images from Sony and HTC
Diffstat (limited to 'src')
-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; } |