2

ユーザーに環境設定を提供するアプリを作成しています。ここでは、 About Floogoo Appというオプションを指定しています。

ユーザーが [ Floogoo アプリについて] オプションをクリックするたびに、www.floogoo.com のような WebURL にリダイレクトする必要があります。

ユーザーがFloogooアプリについてをクリックするたびに、OpenURLクラスを呼び出す必要があります

そしてManifest.xmlで私はPreferenceWindowクラスを与えました

次のようなエラーが表示されます:残念ながらアプリが停止しました

アクティビティ ComponentInfo {com.chr.tatu.sample.friendslist/com.chr.tatu.sample.friendslist.contacts.PreferenceWindow} を開始できません: android.view.InflateException: バイナリ XML ファイルの行 #25: クラス com.chr の膨張エラー.tatu.sample.friendslist.contacts.TimePickerPreferences

スクリーンショットは、テストのためにこれを使用して撮影しました:

  <com.chr.tatu.sample.friendslist.contacts.TimePickerPreference
    android:defaultValue=""
    android:key="about"
    android:summary="Summar"
    android:title="About App" />
4

1 に答える 1

0

コードを変更してください。

Intent browserIntent = 
    new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
    startActivity(browserIntent);

Uri uri = Uri.parse("http://www.google.com");
Intent browserIntent = new Intent(Intent.ACTION_VIEW, uri );
startActivity(browserIntent);

そして私に知らせてください。

于 2013-02-15T09:48:49.513 に答える