我已经开发了一个用于图像编辑的应用程序。现在我添加了在图片上添加文字的功能,与Whatsapp状态,Instagram等相同。 我将使用编辑文本添加文本,但我想将文本移动到我想要的全部图片。我们怎样才能使EditText移动?
public void editIntent()
{
RelativeLayout.LayoutParams params = new
RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT,
RelativeLayout.LayoutParams.WRAP_CONTENT);
EditText et = new EditText(this);
et.setHint("Add a caption..");
rl.addView(et);
}
rl是相对布局的对象