当前位置:   article > 正文

安卓开发——做一个能定时唤起其他APP的闹钟程序_设置闹钟启动另一个app

设置闹钟启动另一个app

三、主页面:

=================================================================

(1)XML布局代码


这里要用到的是TextView的点击事件,所以给每个要唤起的app都定义一个TextView

<?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”

tools:context=“.MainActivity”>

<TextView

android:layout_width=“match_parent”

android:layout_height=“50dp”

android:background=“#ff0000”

android:text=“主页”

android:textSize=“16sp”

android:gravity=“center”

android:textColor=“#ffffff”

/>

<TextView

android:id=“@+id/qq_tv”

android:layout_width=“match_parent”

android:layout_height=“50dp”

android:text=“启动QQ闹钟”

android:textSize=“16sp”

android:gravity=“center”

android:textColor=“#000000”

/>

<View

android:layout_width=“match_parent”

android:layout_height=“0.5dp”

android:background=“#ff00ff”

/>

<TextView

android:id=“@+id/weibo_tv”

android:layout_width=“match_parent”

android:layout_height=“50dp”

android:text=“启动微博闹钟”

android:textSize=“16sp”

android:gravity=“center”

android:textColor=“#000000”

/>

<View

android:layout_width=“match_parent”

android:layout_height=“0.5dp”

android:background=“#ff00ff”

/>

<TextView

android:id=“@+id/wechat_tv”

android:layout_width=“match_parent”

android:layout_height=“50dp”

android:text=“启动微信闹钟”

android:textSize=“16sp”

android:gravity=“center”

android:textColor=“#000000”

/>

<View

android:layout_width=“match_parent”

android:layout_height=“0.5dp”

android:background=“#ff00ff”

/>

(2)界面截图


在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/675768
推荐阅读
相关标签
  

闽ICP备14008679号