显示启动Service服务简单栗子

梦想不抛弃苦心追求的人,只要不停止追求,你们会沐浴在梦想的光辉之中。再美好的梦想与目标,再完美的计划和方案,如果不能尽快在行动中落实,最终只能是纸上谈兵,空想一番。只要瞄准了大方向,坚持不懈地做下去,才能够扫除挡在梦想前面的障碍,实现美好的人生蓝图。显示启动Service服务简单栗子,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

安卓大作业第一题突然间要求有Service服务,使用Toast在界面上产生提示消息,于是。。

效果如下:

显示启动Service服务简单栗子

代码如下:

显示启动Service服务简单栗子显示启动Service服务简单栗子显示启动Service服务简单栗子显示启动Service服务简单栗子

额,照着书上打的。

package com.example.helloworld;

import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.app.Activity;
import android.content.Intent;

public class MainActivity extends Activity {
	    
    
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		Button startButton=(Button)findViewById(R.id.startButton);
		//Button stopButton=(Button)findViewById(R.id.stopButton);
		
		final Intent serviceIntent = new Intent(this,ServiceSubclass.class);
		
		startButton.setOnClickListener(new Button.OnClickListener(){

			@Override
			public void onClick(View view) {
				startService(serviceIntent);	
			}
		});
		
		
		
	}
   
	

}

package com.example.helloworld;

import android.app.AlertDialog.Builder;
import android.app.Dialog;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.view.WindowManager;
import android.widget.Toast;
import android.app.AlertDialog.Builder;
import android.app.Dialog;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.view.WindowManager;

public class ServiceSubclass extends Service {
	
	public void onCreate() {
		super.onCreate();
		Toast.makeText(this, "1onCreate()", Toast.LENGTH_LONG).show();
	}
	
	@Override
	public void onStart(Intent intent, int startId) {
		super.onStart(intent, startId);
		Toast.makeText(this, "天下无不散筵席", Toast.LENGTH_LONG).show();
	}
		
	@Override
	public void onDestroy() {
		super.onDestroy();
		Toast.makeText(this, "3onDestroy()", Toast.LENGTH_LONG).show();
	}

	@Override
	public IBinder onBind(Intent intent) {
		// TODO Auto-generated method stub
		return null;
	}

	
}
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.helloworld"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="17"
        android:targetSdkVersion="17" />
    
    <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        
        
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        
		<service  android:name=".ServiceSubclass"/>
        
        
    </application>

</manifest>
<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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.helloworld.MainActivity" >

    <TextView    
        android:id="@+id/a"   
        android:layout_width="match_parent"       
        android:layout_height="wrap_content"      
        android:text="Hello The Android World!!!"/>

     <Button
        android:id="@+id/startButton"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="I am a button!!!~" 
        android:layout_below="@+id/a"
     />
    
   


</RelativeLayout>

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/151253.html

(0)
飞熊的头像飞熊bm

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!