我正在使用导航drawer activity android studio和Firebase Authentication.当我要运行这个应用程序比我得到这个错误.
W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
Run Code Online (Sandbox Code Playgroud)
我也在使用最少版本的SDK和构建工具......
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
}
Run Code Online (Sandbox Code Playgroud) 我正在进行实时搜索,该搜索将指示搜索字符串中的正确模式。然后它将使用此模式进行搜索,并动态返回正确的数据库模式。例如:Google助理
artificial-intelligence search-engine facebook-graph-api elasticsearch graphql
什么是一个接一个地执行许多JavaScript对象的好习惯,就像管道/链一样.匹配时找到退出代码并返回结果.
function a() {
// found result
// if not found return false
if (2===3){
return 'result A';
}else {
return false;
}
}
function b() {
// If a() False
// True = Match Result
if (true){
return 'result B';
}else {
return false;
}
}
function c() {
// if not found in b() find here
if (true){
return 'result C';
}else {
return false;
}
}
function aibot() {
return a() || b() || c(); // Some …Run Code Online (Sandbox Code Playgroud)我可以在MySql数据库中存储一些对象吗?因为我正在通过MySql建立在线或离线支持系统.因此,将所有数据存储为Object非常重要.除了对象,你有更好的想法吗?
这是Damo关于对象的例子
$data = array(
'user_id' => 1, //$userId,
'payment_id' => $payment_id,
'hash' => $hash,
'conversation' => $object,
'amount' => $paypal->getTransactions()[0]->getAmount()->getTotal(),
'description' => $paypal->getTransactions()[0]->getDescription()
);
$this->db->insert($this->table, $data);
Run Code Online (Sandbox Code Playgroud)