当前位置:   article > 正文

Android:打开程序的全屏页面_android 9 全屏

android 9 全屏

这是显示的效果:

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-NUswCSZ7-1689046670792)(//img-blog.csdn.net/20180507212022876?watermark/2/text/Ly9ibG9nLmNzZG4ubmV0L3RpdGxlNzE=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast)]

想实现这个功能的话,看下面教你怎么做




第一步

随便新建一个文件,(建议先在桌面建),文件命名为

Init_Activity.java

然后复制以下内容(先不用关心内容先按着我做)

package com.title71.ywl.demo5;

import java.util.Timer;
import java.util.TimerTask;



import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.widget.TextView;

public class Init_Activity extends Activity{
	
	private TextView init_text_number;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.init_activity);
        init_text_number = (TextView)findViewById(R.id.init_text_number);
        timer_start();
    }
    
    private int timer_flag =3;
    private void timer_start()
    {
    	final Timer timer = new Timer();
    	timer.schedule(new TimerTask() {
			
			@Override
			public void run() {
				// TODO Auto-generated method stub
				
				Message msg =new Message();
				msg.what = 1;
				msg.obj = timer_flag;
				handler.sendMessage(msg);
				timer_flag--;			
				if(timer_flag < 0)
				{
					timer_flag = 3;
					timer.cancel();
					Intent intent = new Intent(Init_Activity.this,MainActivity.class);
					startActivity(intent);
				}
			}
		}, 3, 1000);  	
    }
    
    
    private Handler handler =new Handler()
    {
    	public void handleMessage(Message msg)
    	{
    		if(msg.what == 1)
    		{
    			init_text_number.setText(""+msg.obj);
    		}
    	}	
    };

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65



第二步

再建一个文件init_activity.xml

拷贝以下内容到文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@drawable/init"
   >


    <TextView
        android:id="@+id/init_text_number"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="right"
        android:text="3"
        android:textColor="#FFFFFFFF"
        android:textSize="15sp" />

  

</LinearLayout>


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23



第三步

找一个图片,命名为init

比如这个图片

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-OHVnQDsF-1689046670793)(//img-blog.csdn.net/20180507213242317?watermark/2/text/Ly9ibG9nLmNzZG4ubmV0L3RpdGxlNzE=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast)]

最后一步

修改AndroidManifest.xml

Androidstudio的这个文件在manifests中

千万注意

修改我注释的内容

修改我注释的内容

修改我注释的内容

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.title71.ywl.demo5">

    <uses-permission android:name="android.permission.INTERNET"/>

    <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=".Init_Activity" android:theme="@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen"><!--先加载全屏的页面-->
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <!--再加载自己的主页面--><activity android:name=".MainActivity"> </activity><!--再加载自己的主页面-->
    </application>

</manifest>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

最后复制拷贝文件到对应的工程目录(studio提示的话默认会帮你修改内容的)

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-qYrpnsAO-1689046670793)(//img-blog.csdn.net/20180507214512693?watermark/2/text/Ly9ibG9nLmNzZG4ubmV0L3RpdGxlNzE=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast)]

没有报错的话基本就ok了,如果报错可能主文件名称被你改过,不是MainActivity了

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号