从默认的空项目中删除“ hello world”

时间:2018-09-15 20:46:07

标签: android-studio

我想更改默认的空白项目以删除Hello World,以便它不会出现在新的空白项目中。尝试了一些建议,但找不到人们说要查找和编辑的内容。只是不在那里。 我不想在每个项目上都看到世界

1 个答案:

答案 0 :(得分:0)

转到/app/src/main/res/layout/activity_main.xml

删除此

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

或 切换到设计并删除组件树中的TextView