当我使用自定义方案(例如 myhttp)时,一切都按预期工作,但如果我使用 http ,它不会处理,并且每次浏览器打开主机时(例如:192.168.1.111)。
我怎么解决这个问题?
我的 manifest.xml
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http"/>
<data android:host="192.168.1.111"/>
</intent-filter>
我的活动:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
final Intent intent = getIntent();
Log.i("MyTAG", "here--01");
}