androidstudio helloworld代码
时间: 2023-03-20 21:06:31 浏览: 610
基于Android studio3.6的JNI教程之helloworld思路详解
以下是Android Studio中的Hello World代码:
1. 打开Android Studio并创建一个新项目。
2. 在“Welcome to Android Studio”窗口中,选择“Start a new Android Studio project”。
3. 在“Create New Project”窗口中,输入应用程序名称和包名称,然后选择“Next”。
4. 在“Target Android Devices”窗口中,选择“Phone and Tablet”,然后选择“Next”。
5. 在“Add an Activity to Mobile”窗口中,选择“Empty Activity”,然后选择“Next”。
6. 在“Customize the Activity”窗口中,保留默认值,然后选择“Finish”。
7. 在Android Studio中,打开“MainActivity.java”文件。
8. 在“onCreate”方法中,添加以下代码:
```
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView textView = findViewById(R.id.textView);
textView.setText("Hello World!");
```
9. 在“activity_main.xml”文件中,添加以下代码:
```
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="24sp"
android:textStyle="bold"
android:layout_gravity="center"
android:gravity="center"
android:textColor="@android:color/black"
android:text="Hello World!" />
```
10. 运行应用程序并查看结果。
以上是Android Studio中的Hello World代码。
阅读全文