设计一个APP应用程序程序,要求实现以下功能: (1)主活动加载一个布局文件,该布局文件上有一个文本编辑款,三个按钮。第一个按钮显示“活动间跳转”,第二个按钮显示“启动服务”,第三个按钮显示“发送广播” (2)点击“活动间跳转”按钮后,跳转到另一个活动,并显示主活动上文本编辑框中的内容。 (3)点击“启动服务”按钮后,启动一个服务,在该服务中弹出一个服务已启动的提示框。 (4)定义一个广播接收器。点击“发送广播”按钮,发送一条广播,广播接收器接收发送的广播,并利用Log类输出调试信息。并给出注释
时间: 2023-11-26 22:03:50 浏览: 154
微信小程序demo:招聘伯乐:页面布局,上拉刷新
以下是实现以上功能的一个示例代码:
MainActivity.java文件:
```
public class MainActivity extends AppCompatActivity {
private EditText editText; // 文本编辑器
private Button jumpButton, startServiceButton, sendBroadcastButton; // 三个按钮
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText = findViewById(R.id.edit_text);
jumpButton = findViewById(R.id.jump_button);
startServiceButton = findViewById(R.id.start_service_button);
sendBroadcastButton = findViewById(R.id.send_broadcast_button);
// 点击“活动间跳转”按钮
jumpButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String text = editText.getText().toString(); // 获取文本编辑器中的内容
Intent intent = new Intent(MainActivity.this, SecondActivity.class); // 创建意图
intent.putExtra("text", text); // 将文本内容作为参数传递给下一个活动
startActivity(intent); // 启动下一个活动
}
});
// 点击“启动服务”按钮
startServiceButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(MainActivity.this, MyService.class); // 创建意图
startService(intent); // 启动服务
Toast.makeText(MainActivity.this, "服务已启动", Toast.LENGTH_SHORT).show(); // 弹出提示框
}
});
// 点击“发送广播”按钮
sendBroadcastButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent("com.example.mybroadcast"); // 创建意图,指定广播的标识符
sendBroadcast(intent); // 发送广播
}
});
}
}
```
activity_main.xml文件:
```
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.myapp.MainActivity">
<EditText
android:id="@+id/edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:hint="输入文本"
android:maxLines="1"
android:singleLine="true" />
<Button
android:id="@+id/jump_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/edit_text"
android:layout_margin="16dp"
android:text="活动间跳转" />
<Button
android:id="@+id/start_service_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/jump_button"
android:layout_margin="16dp"
android:text="启动服务" />
<Button
android:id="@+id/send_broadcast_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/start_service_button"
android:layout_margin="16dp"
android:text="发送广播" />
</RelativeLayout>
```
SecondActivity.java文件:
```
public class SecondActivity extends AppCompatActivity {
private TextView textView; // 文本视图
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second);
textView = findViewById(R.id.text_view);
Intent intent = getIntent(); // 获取启动该活动的意图
String text = intent.getStringExtra("text"); // 获取传递过来的文本内容
textView.setText(text); // 在文本视图中显示文本内容
}
}
```
activity_second.xml文件:
```
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_second"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.myapp.SecondActivity">
<TextView
android:id="@+id/text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textSize="24sp" />
</RelativeLayout>
```
MyService.java文件:
```
public class MyService extends Service {
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Toast.makeText(this, "服务已启动", Toast.LENGTH_SHORT).show(); // 弹出提示框
return super.onStartCommand(intent, flags, startId);
}
@Override
public void onDestroy() {
Toast.makeText(this, "服务已停止", Toast.LENGTH_SHORT).show(); // 弹出提示框
super.onDestroy();
}
}
```
MyBroadcastReceiver.java文件:
```
public class MyBroadcastReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Log.d("MyBroadcastReceiver", "接收到了一条广播"); // 输出调试信息
}
}
```
在AndroidManifest.xml文件中注册服务和广播接收器:
```
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myapp">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".SecondActivity" />
<service android:name=".MyService" />
<receiver
android:name=".MyBroadcastReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.example.mybroadcast" />
</intent-filter>
</receiver>
</application>
</manifest>
```
阅读全文