我们在大多数网站上使用Font Awesome,在示例中建议使用<i>标签以"简洁"(它也指出<span>标签是正确的做事方式,我倾向于同意).
我很好奇这是否会对SEO产生影响.我知道验证器(例如Nibbler)会因使用这些标签而引发错误,但我不确定这些警告是否值得关注.
我不知道为什么但是当我在我的Android应用程序中使用zxing来获取条形码时,格式返回为EAN_13,但是如果我不知道它不是,那么在我的Toast通知中显示EAN_13.关于它为什么破碎的任何线索?
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
IntentResult scanResult = IntentIntegrator.parseActivityResult(requestCode, resultCode, intent);
if (scanResult != null) {
if (resultCode == 0){
//If the user cancels the scan
Toast.makeText(getApplicationContext(),"You cancelled the scan", 3).show();
}
else{
String contents = intent.getStringExtra("SCAN_RESULT");
String format = intent.getStringExtra("SCAN_RESULT_FORMAT").toString();
if (format == "EAN_13"){
//If the barcode scanned is of the correct type then pass the barcode into the search method to get the product details
Toast.makeText(getApplicationContext(),"You scanned " + contents, 3).show();
}
else{ …Run Code Online (Sandbox Code Playgroud)