假设我有一个从 xml 获得的文本视图。
final View popupView = getLayoutInflater().inflate(R.layout.popup, null);
final TextView tvPop = (TextView)popupView.findViewById(R.id.tvKeyPop);
但我想拥有多个tvPop,我应该如何克隆它们?
谢谢。
假设我有一个从 xml 获得的文本视图。
final View popupView = getLayoutInflater().inflate(R.layout.popup, null);
final TextView tvPop = (TextView)popupView.findViewById(R.id.tvKeyPop);
但我想拥有多个tvPop,我应该如何克隆它们?
谢谢。