次の問題の解決策を見つけようとしましたが、成功しませんでした。ログに記録する必要のあるWebページ(プレゼンテーション)(ユーザーが入力した内容、期間など)を表示するアクティビティクラスがあります。一部のページには、新しいプレゼンテーションを開くためのボタンがあります。呼び出しアクティビティ-CLMWebView.class:
Intent intent = new Intent(this, CLMWebView.class);
this.startActivity(intent);
これらのコード行の間にいくつかのintent.putExtraがありますが、これは私が信じていることですが、これには関係ありません。ご覧のとおり、呼び出し元のアクティビティと同じクラスで新しいアクティビティを開始しようとしています。ただし、何も起こりません。何か案は?
編集:CLMWebView.classのAndroidマニフェスト
<activity android:name="com.msoft.views.CLMWebView"
android:configChanges="orientation|keyboard"
android:icon="@drawable/svicon"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.PICK"/>
<action android:name="android.intent.action.CHOOSER" />
<action android:name="android.intent.action.WEB_SEARCH" />
</intent-filter>
</activity>