将布局扩展到文本视图

时间:2016-01-02 13:14:59

标签: android android-layout android-inflate

我想将RelativeLayoutTextViewImageView一起推广到TextViewAutoCompeleteTextView

这样的事情:

我尝试使用这些,但它不起作用:

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

0 个答案:

没有答案