7

重大な問題に直面しています。スクロール時にリストの背景色(透明)を変更しようとしていますが、変更できません。変更しようとしたのは、listView の xml とコードによるものです。ただし、どちらの状態でもリスト背景が白くなります。私は android.support.v4.app.ListFragment; を使用しています。FragmentPagerAdapter.

リストのスクロール時間の色の変更を変更したい。このために、次のコードを使用しています。

public static class ArrayListFragment extends ListFragment {
    int mNum;
    /**
     * Create a new instance of CountingFragment, providing "num"
     * as an argument.
     */
    static ArrayListFragment newInstance(int num) {
        ArrayListFragment f = new ArrayListFragment();
        // Supply num input as an argument.
        Bundle args = new Bundle();
        args.putInt("num", num);
        f.setArguments(args);

        return f;
    }
    /**
     * When creating, retrieve this instance's number from its arguments.
     */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        mNum = getArguments() != null ? getArguments().getInt("num") : 1;
    }

    /**
     * The Fragment's UI is just a simple text view showing its
     * instance number.
     */
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        View v = inflater.inflate(R.layout.fragment_pager_list, container, false);
        //v.setBackgroundResource(R.drawable.background);
        View tv = v.findViewById(R.id.text);

        ((TextView)tv).setText(frameName());


        return v;
    }

   // @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        setListAdapter(new ArrayAdapter<String>(getActivity(),
                android.R.layout.simple_list_item_checked, RishavArraylist() ));

    }

実行時にスクロールリストの背景を変更する方法を教えてください?? ありがとうございました。

4

2 に答える 2

14

Google からのこのブログ投稿、特に関連する XML の部分を見てください。

    android:cacheColorHint="#00000000"
于 2012-07-25T13:30:16.513 に答える
3

この問題には多くのオプションがあります。次のようなプログラミングで背景を透明に設定できます。

yourlistview.setCacheColorHint(Color.TRANSPARENT); 

またはxmlを介して

android:cacheColorHint="@android:color/transparent"
于 2013-03-14T03:43:12.890 に答える