I have a set of views I want to always use together. An example of this may be something like:
Put that XML into a layout XML file and inflate the view using an inflater when you want to.
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = inflater.inflate(R.layout.some_id, parent, false);
Once you have the view you can write a utility class that accepts this view and performs operations on it. Retrieve the text and edit view by using findViewById()
or storing the references to those other views using the ViewHolder pattern