要在Android中的布局中添加文字,可以使用TextView控件。以下是一個示例:
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello, World!"
android:textSize="18sp"
android:textColor="#000000"
android:layout_marginTop="16dp"/>
TextView textView = findViewById(R.id.textView);
textView.setText("Hello, Android!");
這樣就可以在Android布局中添加文字并顯示出來了。通過調整TextView的屬性,可以對文本樣式、顏色、大小等進行進一步的定制。