不确定如何在xml文件中显示文本,我将代码写入java文件中的输出文本但是在运行应用程序时没有任何反应
TextView tv = (TextView) findViewById(R.id.my_text_view);
tv.setText("Welcome to the Dungeon");
*
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/my_text_view"
android:text="@string/my_text_view"/>
答案 0 :(得分:0)
使用此:
<TextView android:id="@+id/my_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Example"
android:layout_gravity="center"
android:textColor="#656565"
android:textSize="20dp" />
然后setText
答案 1 :(得分:0)
为什么要在xml和java中设置两次文本,只需添加一次: 但无论是试图提供:fontsize和布局的重力(中心),无论是以编程方式还是以xml