我想将RelativeLayout
与TextView
和ImageView
一起推广到TextView
或AutoCompeleteTextView
。
这样的事情:
我尝试使用这些,但它不起作用:
LayoutInflater vi = (LayoutInflater) getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = vi.inflate(R.layout.test3, null);
TextView textView = (TextView) v.findViewById(R.id.tvInAuto);
textView.setText(number);
ViewGroup insertPoint = (ViewGroup) findViewById(R.id.tvReceiver);
insertPoint.addView(v, 0, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT));
在此代码中:
tvReceiver
是我的AutoCompeleteTextView
。