欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

轻松搞定表白女朋友:Android版软件 (零基础也可直接下载软件)

程序员文章站 2022-05-21 17:19:05
在我们平时生活当中,经常会看到一些表白女朋友的html网页,但是Android端的表白软件可以说是基本没有,笔者在全网搜了一下,就没有一个可以用的。安卓端可以给人一种定制和精美的感觉,这是网页所做不到的,网页链接不见了就没了。因此在这里将自己写的Android软件制作流程以及代码全部开源,这里采用了 ......
  • 在我们平时生活当中,经常会看到一些表白女朋友的html网页,但是android端的表白软件可以说是基本没有,笔者在全网搜了一下,就没有一个可以用的。安卓端可以给人一种定制和精美的感觉,这是网页所做不到的,网页链接不见了就没了。因此在这里将自己写的android软件制作流程以及代码全部开源,这里采用了web与安卓原生混合开发的技术,引入了腾讯x5内核替换webview,可以让软件加载速度提高百分之三十。在github里,我也导入了了几款不同的背景动态模板,可以供你们进行挑选,也导入了不同的背景音乐可供选择,具体的更换方法也会在下面的博客当中详细解释的(如果不想自己敲代码的话),麻烦在github给颗星,小弟将不胜感激!不会打包生成安装包apk的,可以直接安装的apk文件我也直接上传到github上了!零基础也可以玩儿!看了博客还能自己改!
  • github链接:https://github.com/geeksongs/expresslove
  • 安装包apk文件链接(debug版本,可直接使用):https://github.com/geeksongs/expresslove/tree/master/app/debug

 

软件表白流程:

1.首页开屏暂停三秒,固定背景图

2.进入表白界面

3.如果想要离开,点击手机上的返回按钮,但不管怎么点也退不出去

4.开始表白

5.表白成功之后,出现烟花场景,然后跳转至微信,自动和小哥哥聊天(也可以跳转到qq等任何软件,只需要改一个字符串就可以了)

 

下面是软件演示:

轻松搞定表白女朋友:Android版软件 (零基础也可直接下载软件)

 

一.首先是我们的mainactivity.java

这个活动(java文件)在文件夹:expresslove\app\src\main\java\com\example\lenovo\expresslove下。我们在这个活动当中写进去一个hander,进入延时,延时到了之后跳转到第二个活动,这个活动让我们的首页开屏暂停三秒,固定背景图,如果想要更换背景图的你,则可以在下载下来的文件夹:expresslove\app\src\main\res\drawable当中的timg.png图片进行自行更换,但更换后的名称要保持一致。想要更改延时长短的你,则可以在下面的代码当中作修改,注释比较详细。

mainactivity.java的代码如下:

package com.example.lenovo.expresslove;

import android.app.activity;
import android.content.intent;
import android.os.bundle;

import android.os.handler;
import android.support.v7.app.actionbar;
import android.support.v7.app.appcompatactivity;
import android.view.windowmanager;
import android.webkit.webviewclient;

import com.tencent.smtt.sdk.webview;


public class mainactivity extends appcompatactivity {




    @override
    protected void oncreate(bundle savedinstancestate) {
        super.oncreate(savedinstancestate);
        setcontentview(r.layout.activity_main);

        actionbar actionbar=getsupportactionbar();//后面几行都用于隐藏标题栏
        if(actionbar !=null)
        {
            actionbar.hide();
        }
        getwindow().setflags(windowmanager.layoutparams.flag_fullscreen, windowmanager.layoutparams.flag_fullscreen);
        getsupportactionbar().hide();
new handler().postdelayed(new runnable(){ // 为了减少代码使用匿名handler创建一个延时的调用 public void run() { intent i = new intent(mainactivity.this,main2activity.class);//延时之后跳转到活动2,main2activity.java mainactivity.this.startactivity(i); mainactivity.this.finish(); } }, 3000);//3000表示的是延时3秒 } }

二.首页布局代码:activity_main.xml(不需要改)

在文件夹:expresslove\app\src\main\res\layout下的activity_main.xml 当中

<?xml version="1.0" encoding="utf-8"?>
<linearlayout 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:orientation="vertical"
    android:background="@drawable/timg">
</linearlayout>

 三.进入第二个活动:(安卓程序员可以在这里进入腾讯x5内核)

main2activity.java,和mainactivity.java在同一个文件夹下,这个活动就引入了我们的心形动态图的界面:

这部分代码由几个部分组成:

1.安卓程序员可以在加入腾讯x5内核,由于我们这个活动后面的背景动态是通过webview来加载的,第一次打开软件的速度会偏慢,如果去掉注释删除webview控件的调用,使用x5则会提高加载速度。下面的注释也比较详细。

2.由于背后的动态是html5文件,这个文件是放置在笔者已经创建好的asset文件夹下的,如果想要更改后面的背景动态,则可以直接到expresslove\app\src\main\assets文件夹下查看我们已经给出的html5背景动态,如果不满意可以自己更替,笔者已经往里面注入了index.html index2.html  index3.html  index4.html 四个背景动态,效果可以自行在电脑浏览器当中查看,可以在webview代码实现处更改。如果想要本动态的背景文字,稍后我会详细解释。

3.再引入文字动画,但是动画就需要我们创建新的xml文件来完成这个动画了,这个活动里仅仅是java代码对xml动画进行的调用,实现的是顶部标题栏文字的渐变动画,代码从animation处开始,使用的是补间动画的知识,稍后我们会给出新xml文件的代码。

4.流氓式表白过程,主要使用了对话框的技术,如果用户首先点击了软件上的button“点我啦”,则会跳转到一个对话框,而对话框又只有一个按钮,代码当中利用对话框的嵌套,从而实现点了对话框当中按钮之后又会出现新的对话框。直到点击完对话框。

5.无法返回到桌面的精美对话框dialog制作:如果用户点击了手机上的返回按钮,则会出现:“小姐姐求求你别离开我好吗?”,不管是点击确定还是返回都会返回到第二个活动当中,并不会退出软件。

ackage com.example.lenovo.expresslove;

import android.app.dialog;
import android.content.dialoginterface;
import android.content.intent;
import android.os.build;
import android.os.handler;
import android.support.v7.app.actionbar;
import android.support.v7.app.alertdialog;
import android.support.v7.app.appcompatactivity;
import android.os.bundle;
import android.view.keyevent;
import android.view.view;
import android.view.window;
import android.view.windowmanager;
import android.view.animation.animation;
import android.view.animation.animationutils;
import android.webkit.webviewclient;
import android.widget.button;
import android.widget.textview;
import android.widget.toast;
import android.net.http.sslerror;
import android.os.bundle;
import android.support.v7.app.appcompatactivity;
import android.webkit.sslerrorhandler;
import android.webkit.websettings;
import android.webkit.webview;
import android.webkit.webviewclient;
/*import com.tencent.smtt.sdk.websettings;
import com.tencent.smtt.sdk.webview;*/

public class main2activity extends appcompatactivity {
  //  private webview mwebview;
  private webview webview;
    alertdialog builder=null;//进入流氓式表白
    @override
    protected void oncreate(bundle savedinstancestate) {
        super.oncreate(savedinstancestate);

        setcontentview(r.layout.activity_main2);
//下面被注释掉的这几行代码完全看程序员的个人意愿了,如果想要用腾讯x5内核的,就把后面的注释符号删除就可以了,同时还需要把我们的webview控件相关的 /* mwebview = (com.tencent.smtt.sdk.webview) findviewbyid(r.id.webview2); mwebview.loadurl("file:///android_asset/index3.html"); if (build.version.sdk_int >= 21) {//设置顶部状态栏为半透明 getwindow().setflags( windowmanager.layoutparams.flag_translucent_status, windowmanager.layoutparams.flag_translucent_status); }*/ final textview textview=(textview)findviewbyid(r.id.textview); //下面是运用的webview来加载我们的h5动画,如果想使用x5的可以把下面的这些删掉,再利用上面已经注释过的代码即可。 webview = (webview) findviewbyid(r.id.webview); //需要加载的网页的url webview.loadurl("file:///android_asset/index3.html");//这里写的是assets文件夹下html文件的名称,需要带上后面的后缀名,前面的路径是安卓系统自己规定的android_asset就是表示的在assets文件夹下的意思,如果想要其他动态背景,更改index文件名即可。 webview.getsettings().setlayoutalgorithm(websettings.layoutalgorithm.single_column);//自适应屏幕 webview.getsettings().setloadwithoverviewmode(true);//自适应屏幕 webview.getsettings().setsupportzoom(true); webview.getsettings().setusewideviewport(true);//扩大比例的缩放 // webview.getsettings().setbuiltinzoomcontrols(true);//设置是否出现缩放工具,这里我想就不出现了,影响效果 websettings settings = webview.getsettings(); // 如果访问的页面中要与javascript交互,则webview必须设置支持javascript settings.setjavascriptenabled(true); webview.setwebviewclient(new webviewclient(){ public boolean shouldoverrideurlloading(webview view, string url){ view.loadurl(url); return true; } });
//下面这里引入的是动画,在标题栏上方的文字渐变效果,从“正在加载当中”渐变到“还愣着干嘛?” animation scaleanimation = animationutils.loadanimation(this, r.animator.anim); textview.startanimation(scaleanimation);
//这里是隐藏安卓系统本身的标题栏 actionbar actionbar=getsupportactionbar(); if(actionbar!=null) { actionbar.hide(); }
//这里是设置安卓顶部状态栏为半透明状态,和我们的顶部标题栏颜色相呼应,不然的话显示时间的状态栏就是深蓝色,看起来会很烦 if (build.version.sdk_int >= 21) {//设置顶部状态栏为半透明 getwindow().setflags( windowmanager.layoutparams.flag_translucent_status, windowmanager.layoutparams.flag_translucent_status);} getwindow().setflags(windowmanager.layoutparams.flag_fullscreen, windowmanager.layoutparams.flag_fullscreen); getsupportactionbar().hide();
new handler().postdelayed(new runnable(){ // 为了减少代码使用匿名handler创建一个延时的调用 public void run() { textview.settext("<----还愣着干嘛??"); } }, 4500);//文字渐变的时间为4500ms button button=(button)findviewbyid(r.id.button); button.setonclicklistener(new view.onclicklistener() { @override public void onclick(view view) { alertdialog.builder b = new alertdialog.builder(main2activity.this); //2.设置属性 b.settitle("每天做饭给你吃?"); b.setpositivebutton("好呀", new dialoginterface.onclicklistener() { @override public void onclick(dialoginterface dialoginterface, int i) { alertdialog.builder c = new alertdialog.builder(main2activity.this); c.settitle("小姐姐:"); c.setmessage("每个月生活费全都给你"); c.setpositivebutton("好鸭", new dialoginterface.onclicklistener() { @override public void onclick(dialoginterface dialoginterface, int i) { alertdialog.builder d = new alertdialog.builder(main2activity.this); d.settitle("小姐姐:"); d.setmessage("房产证写你名字"); d.setnegativebutton("好鸭", new dialoginterface.onclicklistener() { @override public void onclick(dialoginterface dialoginterface, int i) { alertdialog.builder y = new alertdialog.builder(main2activity.this); y.settitle("小姐姐"); y.setmessage("每天都陪你逛街"); y.setnegativebutton("好呀", new dialoginterface.onclicklistener() { @override public void onclick(dialoginterface dialoginterface, int i) { intent intent=new intent(main2activity.this,main3activity.class); startactivity(intent); } }); y.create(); y.show(); } }); d.create(); d.show(); } }); c.create();//创建 c.show();//show } }); b.create();//创建 b.show();//show } }); //这里是外面的括号了 } //下面是点击返回,跳出精美对话框的按钮,不管确定还是取消都不会退出软件 public boolean onkeyup(int keycode, keyevent event) { if(keycode == keyevent.keycode_back){ new commomdialog(this, r.style.dialog, "求求你别离开我好吗?", new commomdialog.oncloselistener() { @override public void onclick(dialog dialog, boolean confirm) { if(confirm){ dialog.dismiss(); } } }) .settitle("小姐姐:").show(); } return true; }}

 四.index3.html

如果想要修改背景动态后面的文字:“dear love”为你想要dear的那个人,则可以在这个网页文件里面进行修改:

如果不知道怎样自己创建asset目录的同学可以参见我的前几篇博文,传送门: 文件目录在这儿:expresslove\app\src\main\assets

代码如下:

<!doctype html>
<html lang="en" >
<head>
<meta charset="utf-8">
<title>爱你</title>

<link rel="stylesheet" href="css/style.css">

</head>
<body>

<link href='https://fonts.googleapis.com/css?family=lato:100' rel='stylesheet' type='text/css'>

<canvas id="canvas" width="800" height="500"></canvas>

<div class="title"><b>dear love</b></div><!--在这里修改背景当中的文字-->

<script src='js/fastblur.js'></script>
<script src='js/jquery.min.js'></script>
<script src="js/index.js"></script>

</body>
</html>

 从代码当中我们可以看到这里引用了不少的js文件,相关的js文件夹我已经放到了asset文件夹之下,所以就可以进行正确的调用了。如果想引入新html5动画背景的程序员,请一定要注意您html5网页所对应的javascript文件和css文件所对应的文件夹名不要和笔者这里的重复了,不然会引起一些不必要的麻烦。

五.anim.xml

这个文件是我们补间动画所用到的xml文件,首前面的scale属性被我注释掉了,这个表示的是文字或者图片的缩放,但是实际在android软件当中运行的效果不太理想,就仅仅使用了alpha的渐变属性,对文字进行渐变。创建anim.xml需要特定的方式才能够创建,而不是直接在我们的layout文件夹之下进行创建。 同学们可以自行百度/谷歌一下。

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <!--<scale
        android:duration="1000"
        android:startoffset ="0"
        android:fillbefore = "true"
        android:fillafter = "false"
        android:fillenabled= "true"
        android:repeatmode= "restart"
        android:repeatcount = "0"
        android:fromxscale="0.0"
        android:toxscale="2"
        android:fromyscale="0.0"
        android:toyscale="2"
        android:pivotx="50%"
        android:pivoty="50%" />-->
    <alpha


    android:duration="2000"
    android:startoffset ="0"
    android:fillbefore = "true"
    android:fillenabled= "true"
    android:repeatmode= "restart"
    android:repeatcount = "0"
        android:fromalpha="0.0"
    android:toalpha="1.0"

    />

</set>

六.第二个活动的布局activity_main2.xml

这个布局略显复杂了一点,但是细细看看其实也不太难。主要是在整个布局的最上方我们引入了一个嵌套的相对布局,这样才可以起到替换安卓自带的标题栏的作用。如果想使用x5内核的话,直接把我已经注释掉的x5控件的主食删掉,再删除webview的布局就好了,但是不管如何其id一定要对才行,因为我们会在第二个活动当中引入它的id!! 

<?xml version="1.0" encoding="utf-8"?>
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".main2activity">
    <relativelayout
        android:background="@color/maincolor"
        android:layout_width="match_parent"
        android:layout_height="17dp">


    </relativelayout>
<relativelayout
    android:background="@color/maincolor"
    android:layout_width="match_parent"
    android:layout_height="42dp">
    <button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:text="点我啦"/>
<textview
    android:id="@+id/textview"
    android:textsize="23dp"
    android:layout_alignparentright="true"
    android:textcolor="@color/white"
    android:layout_width="250dp"
    android:layout_height="match_parent"
    android:text="正在加载中,稍等....."/>
</relativelayout>
   <!-- <com.tencent.smtt.sdk.webview
        android:id="@+id/webview2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>-->
    <webview
        android:id="@+id/webview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"></webview>
</linearlayout>

 最后的布局的效果如下:(真机运行出来的效果),可以看到上面的状态栏是没有蓝色的,蓝色的标题栏也被我们隐藏了,因为我们在第二个活动当中已经隐藏了这些。只是需要注意将状态栏变为半透明需要将安卓软件的api提升到21以上,没有在21以上的可以直接在gradle文件里面进行修改,修改之后在点击android studio 右上方的syic now ,再等待电脑运行一段时间就可以了。

轻松搞定表白女朋友:Android版软件 (零基础也可直接下载软件)

除此之外,我们在点击返回按钮的时候会跳出一个仿微信的对话框,如下:
轻松搞定表白女朋友:Android版软件 (零基础也可直接下载软件)

在第二个活动当中已经触发了这个事件,因此我们还需要在xml文件当中做一些美工,下面是我们需要编辑的第一个xml文件:


七.dialog_commom.xml

这个布局直接创建到我们的layout文件夹之下就可以了.

代码如下:

<?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:background="@drawable/bg_round_white"
    android:orientation="vertical" >

    <textview
        android:id="@+id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:padding="12dp"
        android:layout_margintop="12dp"
        android:text="提示"
        android:textsize="20sp"
        android:textcolor="@color/black"/>

    <textview
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:layout_gravity="center_horizontal"
        android:linespacingextra="3dp"
        android:layout_marginleft="40dp"
        android:layout_margintop="20dp"
        android:layout_marginright="40dp"
        android:layout_marginbottom="30dp"
        android:text="签到成功,获得200积分"
        android:textsize="16sp"
        android:textcolor="@color/font_common_1"/>
    <view
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="@color/commom_background"/>

    <linearlayout
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:orientation="horizontal">

        <textview
            android:id="@+id/cancel"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@drawable/bg_dialog_left_white"
            android:layout_weight="1.0"
            android:gravity="center"
            android:text="确定"
            android:textsize="12sp"
            android:textcolor="@color/font_common_2"/>

        <view
            android:layout_width="1dp"
            android:layout_height="match_parent"
            android:background="@color/commom_background"/>

        <textview
            android:id="@+id/submit"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@drawable/bg_dialog_right_white"
            android:gravity="center"
            android:layout_weight="1.0"
            android:text="取消"
            android:textsize="12sp"
            android:textcolor="@color/font_blue"/>

    </linearlayout>

</linearlayout>

八.colors.xml

values下的文件,必须的

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="colorprimary">#3f51b5</color>
    <color name="colorprimarydark">#303f9f</color>
    <color name="coloraccent">#ff4081</color>
    <color name="maincolor">#573567</color>

    <color name="white">#ffffff</color>
    <color name="black">#000000</color>

    <color name="font_gray_b">#d4d4d3</color>

    <color name="font_tab_1">#42369a</color>
    <color name="font_tab_0">#b1b1b1</color>


    <color name="font_common_1">#424242</color>
    <color name="font_common_2">#a1a1a1</color>
    <color name="font_blue">#42369a</color>

    <color name="font_green">#00cccc</color>

    <color name="commom_background">#f3f3f3</color>

</resources>

九.styles.xml

<resources>

    <!-- base application theme. -->
    <style name="apptheme" parent="theme.appcompat.light.darkactionbar">
        <!-- customize your theme here. -->
        <item name="colorprimary">@color/colorprimary</item>
        <item name="colorprimarydark">@color/colorprimarydark</item>
        <item name="coloraccent">@color/coloraccent</item>
    </style>


    <style name="dialog" parent="@android:style/theme.dialog">
        <item name="android:windowframe">@null</item>
        <!--边框-->
        <item name="android:windowisfloating">true</item>
        <!--是否浮现在activity之上-->
        <item name="android:windowistranslucent">false</item>
        <!--半透明-->
        <item name="android:windownotitle">true</item>
        <!--无标题-->
        <item name="android:windowbackground">@android:color/transparent</item>
        <!--背景透明-->
        <item name="android:backgrounddimenabled">true</item>
        <!--模糊-->

    </style>



    <style name="apptheme.noactionbar">
        <item name="windowactionbar">false</item>
        <item name="windownotitle">true</item>
    </style>

    <style name="apptheme.appbaroverlay" parent="themeoverlay.appcompat.dark.actionbar" />

    <style name="apptheme.popupoverlay" parent="themeoverlay.appcompat.light" />


</resources>

为了能够在点击的时候跳出这个弹框,我们还需要编写新的java类:


九.commomdialog.java

package com.example.lenovo.expresslove;

import android.app.dialog;
import android.content.context;
import android.os.bundle;
import android.text.textutils;
import android.view.view;
import android.widget.textview;

public class commomdialog extends dialog implements view.onclicklistener {

    private textview contenttxt;
    private textview titletxt;
    private textview submittxt;
    private textview canceltxt;

    private context mcontext;
    private string content;
    private oncloselistener listener;
    private string positivename;
    private string negativename;
    private string title;

    public commomdialog(context context) {
        super(context);
        this.mcontext = context;
    }

    public commomdialog(context context, int themeresid, string content) {
        super(context, themeresid);
        this.mcontext = context;
        this.content = content;
    }

    public commomdialog(context context, int themeresid, string content, oncloselistener listener) {
        super(context, themeresid);
        this.mcontext = context;
        this.content = content;
        this.listener = listener;
    }

    protected commomdialog(context context, boolean cancelable, oncancellistener cancellistener) {
        super(context, cancelable, cancellistener);
        this.mcontext = context;
    }

    public commomdialog settitle(string title){
        this.title = title;
        return this;
    }

    public commomdialog setpositivebutton(string name){
        this.positivename = name;
        return this;
    }

    public commomdialog setnegativebutton(string name){
        this.negativename = name;
        return this;
    }

    @override
    protected void oncreate(bundle savedinstancestate) {
        super.oncreate(savedinstancestate);
        setcontentview(r.layout.dialog_commom);
        setcanceledontouchoutside(false);
        initview();
    }

    private void initview(){
        contenttxt = (textview)findviewbyid(r.id.content);
        titletxt = (textview)findviewbyid(r.id.title);
        submittxt = (textview)findviewbyid(r.id.submit);
        submittxt.setonclicklistener(this);
        canceltxt = (textview)findviewbyid(r.id.cancel);
        canceltxt.setonclicklistener(this);

        contenttxt.settext(content);
        if(!textutils.isempty(positivename)){
            submittxt.settext(positivename);
        }

        if(!textutils.isempty(negativename)){
            canceltxt.settext(negativename);
        }

        if(!textutils.isempty(title)){
            titletxt.settext(title);
        }

    }

    @override
    public void onclick(view v) {
        switch (v.getid()){
            case r.id.cancel:
                if(listener != null){
                    listener.onclick(this, false);
                }
                this.dismiss();
                break;
            case r.id.submit:
                if(listener != null){
                    listener.onclick(this, true);
                }
                break;
        }
    }

    public interface oncloselistener{
        void onclick(dialog dialog, boolean confirm);
    }
}

如果想要x5内核运行好的话,还需要新建myapplication.java类:


十.myapplication.java

这个类如果不用x5内核,写了也没有关系,要用的话就必须写了。

package com.example.lenovo.expresslove;

import android.app.application;
import android.util.log;

import com.tencent.smtt.sdk.qbsdk;

public class myapplication extends application {
    public void oncreate() {
        // todo auto-generated method stub
        super.oncreate();
        initx5();
    }

    /**
     * 初始化x5
     */
    private void initx5() {
        //x5內核初始化回调
        qbsdk.preinitcallback cb = new qbsdk.preinitcallback() {
            @override
            public void onviewinitfinished(boolean arg0) {
                //x5內核初始化完成的回调,为true表示x5内核加载成功,否则表示x5内核加载失败,会自动切换到系统内核。
                log.d("app", " onviewinitfinished is " + arg0);
            }

            @override
            public void oncoreinitfinished() {
            }
        };
        //x5内核初始化接口
        qbsdk.initx5environment(getapplicationcontext(), cb);

    }
}

现在前面两个主活动就编写完成了,现在来到了我们的第三个活动,烟花场景,播放完毕之后则直接跳转到微信。

十一.main3activity.java

package com.example.lenovo.expresslove;

import android.content.componentname;
import android.content.context;
import android.content.intent;
import android.content.pm.packageinfo;
import android.content.pm.packagemanager;
import android.net.uri;
import android.os.build;
import android.os.handler;
import android.support.v7.app.actionbar;
import android.support.v7.app.appcompatactivity;
import android.os.bundle;
import android.view.windowmanager;
import android.webkit.websettings;
import android.webkit.webview;
import android.webkit.webviewclient;

import java.util.list;

public class main3activity extends appcompatactivity {



    private webview webview;
    @override
    protected void oncreate(bundle savedinstancestate) {
        super.oncreate(savedinstancestate);
        setcontentview(r.layout.activity_main3);
        getwindow().setflags(windowmanager.layoutparams.flag_fullscreen, windowmanager.layoutparams.flag_fullscreen);
        getsupportactionbar().hide();
        new handler().postdelayed(new runnable(){ // 为了减少代码使用匿名handler创建一个延时的调用
            public void run() {
                string url="weixin://";
                startactivity(new intent(intent.action_view, uri.parse(url)));



            } }, 5000);
        webview = (webview) findviewbyid(r.id.webview2);
        //需要加载的网页的url
        webview.loadurl("file:///android_asset/index4.html");//这里写的是assets文件夹下html文件的名称,需要带上后面的后缀名,前面的路径是安卓系统自己规定的android_asset就是表示的在assets文件夹下的意思。
        webview.getsettings().setlayoutalgorithm(websettings.layoutalgorithm.single_column);//自适应屏幕
        webview.getsettings().setloadwithoverviewmode(true);//自适应屏幕
        webview.getsettings().setsupportzoom(true);
        webview.getsettings().setusewideviewport(true);//扩大比例的缩放
        // webview.getsettings().setbuiltinzoomcontrols(true);//设置是否出现缩放工具,这里我想就不出现了,影响效果
        websettings settings = webview.getsettings();
        // 如果访问的页面中要与javascript交互,则webview必须设置支持javascript
        settings.setjavascriptenabled(true);
        webview.setwebviewclient(new webviewclient(){
            public boolean shouldoverrideurlloading(webview view, string url){
                view.loadurl(url);
                return true;
            }
        });
        if (build.version.sdk_int >= 21) {//设置顶部状态栏为半透明
            getwindow().setflags(
                    windowmanager.layoutparams.flag_translucent_status,
                    windowmanager.layoutparams.flag_translucent_status);}

        actionbar actionbar=getsupportactionbar();
        if(actionbar!=null)
        {
            actionbar.hide();
        }
    }
}

下面是第三个活动布局:


十二.activity_main3.xml

<?xml version="1.0" encoding="utf-8"?>
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".main3activity">
<webview
    android:id="@+id/webview2"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

</webview>

</linearlayout>

最终的动画场景如下:(这里就仅仅截屏了)

轻松搞定表白女朋友:Android版软件 (零基础也可直接下载软件)

 

 等待几秒钟之后则会自动跳转微信,等待我们也是用匿名handler来完成的。好了,差不多了,这样我们一个完整的软件就制作完成了,如果还有什么问题的话,去源码里看看嘿嘿