Say I have a textview that I got from xml.
final View popupView = getLayoutInflater().inflate(R.layout.popup, null);
final TextView tvPop = (TextView)popupView.findViewById(R.id.tvKeyPop);
But I want to have multiple tvPop 's, how should I clone them?
Thanks.