summaryrefslogtreecommitdiff
path: root/src/de/blinkt/openvpn/FaqFragment.java
blob: 09c6cbdc4934c61011b502ae37c6c256f6d5be72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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  {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
       
    }

    @Override
    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;

    }

}