diff --git a/sample_app/res/drawable-xhdpi/ic_bluetooth_ibeacon.png b/sample_app/res/drawable-xhdpi/ic_bluetooth_on.png similarity index 100% rename from sample_app/res/drawable-xhdpi/ic_bluetooth_ibeacon.png rename to sample_app/res/drawable-xhdpi/ic_bluetooth_on.png diff --git a/sample_app/res/drawable-xhdpi/ic_device_ibeacon.png b/sample_app/res/drawable-xhdpi/ic_device_ibeacon.png new file mode 100644 index 0000000..0c3f7fc Binary files /dev/null and b/sample_app/res/drawable-xhdpi/ic_device_ibeacon.png differ diff --git a/sample_app/src/uk/co/alt236/btlescan/adapters/LeDeviceListAdapter.java b/sample_app/src/uk/co/alt236/btlescan/adapters/LeDeviceListAdapter.java index 913f2b4..1bcb6ad 100644 --- a/sample_app/src/uk/co/alt236/btlescan/adapters/LeDeviceListAdapter.java +++ b/sample_app/src/uk/co/alt236/btlescan/adapters/LeDeviceListAdapter.java @@ -82,7 +82,7 @@ import android.widget.TextView; } if (IBeaconUtils.isThisAnIBeacon(device)){ - viewHolder.deviceIcon.setImageResource(R.drawable.ic_bluetooth_ibeacon); + viewHolder.deviceIcon.setImageResource(R.drawable.ic_device_ibeacon); } else { viewHolder.deviceIcon.setImageResource(R.drawable.ic_bluetooth); }