=================================================================
这里要用到的是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”
/>