我的ListView包含不同文本顏色的項目。我需要抓住每個項目的顏色狀態以保存在我的片段的onSaveInstanceState中。如何獲取Android ListView中單個項目的文本顏色
ListView lvItems = (ListView) getActivity().findViewById(R.id.lvItems);
lvItemsArray.add("Testing1234");
lvItemsAdapter = new ListViewAdapter(getActivity(), lvItemsArray);
lvItems.setAdapter(lvItemsAdapter);
試試這個[鏈接](HTTPS://開發商.android.com /參考/安卓/空間/ TextView.html#getCurrentTextColor()) – bGorle