Android Uri中的片段标识符(#)工作不正常

Android Uri中的片段标识符(#)工作不正常,android,uri,fragment-identifier,Android,Uri,Fragment Identifier,我正在使用以下代码打开网页特定部分的浏览器: Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://something.somewhere.com/baggage_fees.html#_" + twoLetterCode; startActivity(Intent.createChooser(browserIntent, "Select browser:")); 因此,它在浏览器中加载页面

我正在使用以下代码打开网页特定部分的浏览器:

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://something.somewhere.com/baggage_fees.html#_" + twoLetterCode;
        startActivity(Intent.createChooser(browserIntent, "Select browser:"));
因此,它在浏览器中加载页面,但仅在页面的右侧停留一秒钟,然后跳回页面的顶部(页面很长)。它为什么要这样做?我如何修复它

非常感谢