我目前正在以编程方式创建带有图像视图和文本视图的框架布局。按原始布局是相对布局。
RelativeLayout layout = (RelativeLayout) findViewById(R.id.rel);
FrameLayout fr = new FrameLayout(this);
fr.setBackgroundResource(R.drawable.question_bar_icon);
ImageView b1 = new ImageView(this);
TextView b2 = new TextView(this);
b1.setBackgroundResource(R.drawable.mcq);
fr.addView(b1);
fr.addView(b2);
layout.addView(fr);
现在我无法调整图像视图和按钮的大小,也无法将它们定位在中心的文本视图和垂直中心的图像视图中,并且位于左侧。我尝试了布局参数,但没有工作,任何帮助将不胜感激!