2

我正在制作一个应用程序,我在其中向用户提供首选项,在这里我给出了一个选项,即About Floogoo App

现在我想每当用户点击About Floogoo App选项时,需要重定向到 WebURL,例如:www.floogoo.com

现在我想每当用户点击 About Floogoo App > 它调用 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

ScreenShot 已使用此进行测试:

  <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 回答