1

リストビュー項目のクリック時にアセットフォルダーから html ファイルを読み込もうとしています。問題は、クリックするとクリーンなページが表示され、html ファイルが検査されることです。ここにコードの断片があります。

public static ListView listview;
    public static ArrayList<String> interviews;
    public static ArrayAdapter<String> adapter;
    public WebView myWebView;

    @Override
    protected void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_kochergin);
        listview = (ListView) findViewById(R.id.mainListView);
        myWebView = (WebView)findViewById(R.id.webview);
    //  myWebView = new WebView(this);
        listview.setBackgroundColor(Color.BLACK);
        listview.setCacheColorHint(Color.BLACK);

        String[] interviewlist = new String[] {"Interview1", "Interview2","Interview3","Interview4","Interview5","Interview6"};  
        ArrayList<String> interviews = new ArrayList<String>();
        interviews.addAll( Arrays.asList(interviewlist) );


        ArrayAdapter <String> adapter = new ArrayAdapter<String>(this, R.layout.simplerow, R.id.rowTextView, interviews);
        listview.setAdapter(adapter);
        Collections.sort(interviews);


    listview.setOnItemClickListener(new OnItemClickListener() 
    {
        @Override
        public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) 
        {

            setContentView(R.layout.webview);

        //  myWebView.setVisibility(View.VISIBLE);
           //   myWebView.getSettings().setJavaScriptEnabled(true);
            myWebView.loadUrl("file:///android_asset/2.html");
        }
    });

私が間違っていることは何ですか?

4

1 に答える 1