From 6a3ab893b30a0627c1bb89e5823f38437941d83e Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Wed, 23 May 2012 16:47:47 +0200 Subject: Finetune FAQ, change font sizes, add Information about broken Images from Sony and HTC --- src/de/blinkt/openvpn/FaqFragment.java | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/de/blinkt/openvpn/FaqFragment.java') 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; } -- cgit v1.2.3