我正在使用下面的代码在画布上设置文本..但现在我想知道如何在布局底部设置文本的位置..
LinearLayout layout = new LinearLayout(getContext());
TextView textView = new TextView(getContext());
textView.setVisibility(View.VISIBLE);
textView.setText(DetailsActivity.temp_desc);
textView.setLines(10);
textView.setSingleLine(false);
layout.addView(textView);
layout.measure(canvas.getWidth(), canvas.getHeight());
layout.layout(0,100, canvas.getWidth(), canvas.getHeight());
layout.draw(canvas);
使用此代码,我在 (0,0) 的位置上获取文本,但我想将其设置为 (0,400) 我怎样才能满足我的要求?