用Android stdio写一个小程序
时间: 2023-05-26 14:02:25 浏览: 180
Android studio写的计算器小程序
5星 · 资源好评率100%
很抱歉,作为AI语言模型,我无法使用Android Studio编写代码。但是,以下是一个简单的Hello World示例程序,可以在Android Studio中创建并运行。
1. 打开Android Studio并创建新的项目
2. 在“Create New Project”页面上,选择“Empty Activity”,然后按照向导的指示输入应用程序的名称和其他信息。
3. 在“activity_main.xml”文件中,使用以下代码替换默认布局代码:
```
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/hello_world_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="24sp"
tools:layout_centerInParent="true" />
</RelativeLayout>
```
4. 在MainActivity.java文件中,使用以下代码替换默认代码:
```
package com.example.helloworld;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Find the TextView with id hello_world_textview
TextView helloTextView = findViewById(R.id.hello_world_textview);
// Set the text of the TextView
helloTextView.setText("Hello World!");
}
}
```
5. 运行程序并查看输出。
以上是一个简单的示例程序,您可以根据自己的需要进行修改和扩展。
阅读全文