gpt4 book ai didi

java - 如何在 tabView 中使用撰写电子邮件 Activity ?

转载 作者:行者123 更新时间:2023-12-02 07:55:14 25 4
gpt4 key购买 nike

我想在选项卡 Activity 中显示撰写电子邮件。这是我的代码。

        TabHost tabHost=getTabHost();
TabHost.TabSpec spec;
Intent intent;

//View tabView= tabHost.getChildAt(0);
//tabView.setPadding(0, 13, 0, 13);
//tabView.setBackgroundColor(0xFFFFFFFF);
intent=new Intent("com.android.phone.action.RECENT_CALLS").setClass(this,CallListActivity.class);
spec=tabHost.newTabSpec("Call").setIndicator("Call").setContent(intent);
tabHost.addTab(spec);

intent=new Intent("android.intent.action.Compose_EMAIL");
intent.setClassName("com.android.email", "com.android.email.activity.MessageCompose");
spec=tabHost.newTabSpec("Message").setIndicator("Message").setContent(intent);
tabHost.addTab(spec);

intent=new Intent().setClass(this, com.android.contacts.qs.logger.email.QsEmailLogger.class);
spec=tabHost.newTabSpec("Email").setIndicator("Email").setContent(intent);
tabHost.addTab(spec);

intent=new Intent().setClass(this,com.android.contacts.qs.logger.notification.NotificationLogger.class);
spec=tabHost.newTabSpec("Notification").setIndicator("Notification").setContent(intent);
tabHost.addTab(spec);

tabHost.setCurrentTab(0);

此代码生成错误。错误为03-16 12:04:09.132: E/AndroidRuntime(312): java.lang.SecurityException: 请求来自 com.android.email 的代码(uid 10011)在进程 android.process.acore 中运行(uid 10001)

   intent=new Intent("android.intent.action.Compose_EMAIL");
intent.setClassName("com.android.email", "com.android.email.activity.MessageCompose");
spec=tabHost.newTabSpec("Message").setIndicator("Message").setContent(intent);
tabHost.addTab(sp

最佳答案

在您的应用程序 list 中写入以下行,

android:sharedUserId="android.uid.shared"
android:sharedUserLabel="@string/sharedUserLabel"

sharedUserId参数用于在两个应用程序之间共享代码、进程、数据。因此这些代码将适用于这两个应用程序。

并将这些行写入两个应用程序的 .mk 文件中...

LOCAL_CERTIFICATE := shared

关于java - 如何在 tabView 中使用撰写电子邮件 Activity ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9732999/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com