/*** Copyright (c) 2008-2012 CommonsWare, LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. From _The Busy Coder's Guide to Advanced Android Development_ http://commonsware.com/AdvAndroid */ package com.commonsware.android.drawable; import android.app.ListActivity; import android.content.Context; import android.os.Bundle; import android.content.res.ColorStateList; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.ListView; import android.widget.TextView; public class GradientDemo extends ListActivity { private static ColorStateList allWhite=ColorStateList.valueOf(0xFFFFFFFF); private static String[] items={"lorem", "ipsum", "dolor", "sit", "amet", "consectetuer", "adipiscing", "elit", "morbi", "vel", "ligula", "vitae", "arcu", "aliquet", "mollis", "etiam", "vel", "erat", "placerat", "ante", "porttitor", "sodales", "pellentesque", "augue", "purus"}; @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); setContentView(R.layout.main); setListAdapter(new GradientAdapter(this)); getListView().setOnItemSelectedListener(listener); } class GradientAdapter extends ArrayAdapter { GradientAdapter(Context ctxt) { super(ctxt, R.layout.row, items); } @Override public View getView(int position, View convertView, ViewGroup parent) { GradientWrapper wrapper=null; if (convertView==null) { convertView=getLayoutInflater().inflate(R.layout.row, parent, false); wrapper=new GradientWrapper(convertView); convertView.setTag(wrapper); } else { wrapper=(GradientWrapper)convertView.getTag(); } wrapper.getLabel().setText(items[position]); return(convertView); } } class GradientWrapper { View row=null; TextView label=null; GradientWrapper(View row) { this.row=row; } TextView getLabel() { if (label==null) { label=(TextView)row.findViewById(R.id.label); } return(label); } } AdapterView.OnItemSelectedListener listener=new AdapterView.OnItemSelectedListener() { View lastRow=null; public void onItemSelected(AdapterView<?> parent, View view, int position, long id) { if (lastRow!=null) { lastRow.setBackgroundColor(0x00000000); } view.setBackgroundResource(R.drawable.active_row); lastRow=view; } public void onNothingSelected(AdapterView<?> parent) { if (lastRow!=null) { lastRow.setBackgroundColor(0x00000000); lastRow=null; } } }; }