1

3 つのタブがあり、各タブのコンテンツはビュー (この場合は Gridview) です。グリッドを設定するイメージ アダプター クラスを作成しました。を使用してイメージアダプターを呼び出します

GridView gridview=(GridView)findViewById(R.id.gridview);
gridview.setAdapter(new ImageAdapter(this));

ただし、各ビューには異なる方法で入力する必要があります。どのビューがイメージ アダプター クラスを呼び出したかを知るにはどうすればよいですか? 呼び出しとともに引数を渡す方法はありますか、それとも別の方法で行うことができますか?

4

2 に答える 2

1

グリッドアダプタクラスでコンストラクタを作成し、コンテキストとともに配列を渡してみてください

于 2011-06-23T04:05:39.677 に答える
0
Resources res = getResources(); // Resource object to get Drawables
    TabHost tabHost = getTabHost(); // The activity TabHost

    Intent intent = new Intent(this, a0.class);
    tabHost.addTab(tabHost.newTabSpec("")
            .setIndicator("", res.getDrawable(R.drawable.ic_tab_main))
            .setContent(intent));

    Intent intent2 = new Intent(this, c0.class);
    tabHost.addTab(tabHost
            .newTabSpec("")
            .setIndicator("", res.getDrawable(R.drawable.ic_tab_setup))
            .setContent(intent2));

    Intent intent3 = new Intent(this, d0.class);
    tabHost.addTab(tabHost
            .newTabSpec("")
            .setIndicator("", res.getDrawable(R.drawable.ic_tab_third))
            .setContent(intent3));
    Intent intent4 = new Intent(this, e0.class);
    tabHost.addTab(tabHost
            .newTabSpec("")
            .setIndicator("", res.getDrawable(R.drawable.ic_tab_setting))
            .setContent(intent4));

    tabHost.setCurrentTab(0);

    // Set tabs Colors
    tabHost.setBackgroundColor(Color.BLACK);
    tabHost.getTabWidget().setBackgroundColor(Color.BLACK);
于 2011-06-20T07:02:51.303 に答える