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 | 02fe0dc7261a615c3ed95ea408c9090788638af8 (patch) | |
tree | 9eed507308a7b8506a95a5c867261ad033158e75 /src/de | |
parent | bec8a0aad49e18417ca643f35df7570ea621c55b (diff) |
Finetune FAQ, change font sizes, add Information about broken Images from Sony and HTC
Diffstat (limited to 'src/de')
-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; } |