Best way to change individual views styles in a multi Theme app
问题 I have a ListView with a BaseAdapter that can have many different inflated views . I'm implementing tree Themes that user can choose from within the app. Everything was great until I needed to change the appearance of a row TextView in the ListView depending on the Theme user has chosen. I have a solution where I'm on the fly testing like this: @Override public View getView(int position, View convertView, ViewGroup parent) { int type = getItemViewType(position); ViewHolder viewHolder = null;