我有一个以编程方式添加文本视图的示例我想做的是在 xml 中添加相同的文本视图,以便我可以将它定位在布局中的特定位置有没有办法将此代码转换为 xml?
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
// Create the text view
TextView textView = new TextView(this);
textView.setTextSize(40);
textView.setText(message);
// Set the text view as the activity layout
setContentView(textView);