Thêm một số hương vị bổ sung cho câu trả lời này, cũng như có một chút nhầm lẫn. Bạn sẽ có thể thả thử nghiệm này vào bất kỳ @RunWith(AndroidJUnit4.class)
thử nghiệm nào bạn có trong dự án của mình (bạn cũng sẽ cần thêm các độ mờ vào dimens.xml của mình).
Lưu ý: Tất cả các bài kiểm tra này đều vượt qua
@Test public void testScaledFontSizes() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
final Context context = InstrumentationRegistry.getTargetContext();
Configuration configuration = context.getResources().getConfiguration();
configuration.fontScale = 2.0f;
configuration.densityDpi = 160; // mdpi, 1:1
context.getResources().updateConfiguration(configuration, null);
float scaledTextSize = context.getResources().getDimensionPixelSize(R.dimen.sp_15);
assertEquals(30.0f, scaledTextSize);
// Create a new TextView with the explicitly set configuration
TextView textView = new TextView(context);
textView.setTextSize(TypedValue.COMPLEX_UNIT_PX, scaledTextSize);
// 30, because font size is scaled
assertEquals(30.0f, textView.getTextSize());
// This is what we *don't* want, it's scaled *twice*!
textView.setTextSize(scaledTextSize);
assertEquals(60.0f, textView.getTextSize());
// DP instead of SP tests
float fifteenDp = context.getResources().getDimensionPixelSize(R.dimen.dp_15);
assertEquals(15.0f, fifteenDp);
textView.setTextSize(TypedValue.COMPLEX_UNIT_PX, fifteenDp);
// Still 15, because it's DP, not SP
assertEquals(15.0f, fifteenDp);
textView.setTextSize(fifteenDp);
// 30, because setTextSize DOES font scaling
assertEquals(30.0f, textView.getTextSize());
}
}
Điểm nổi bật mà tôi tìm thấy là TextView.setTextSize(float)
áp dụng tỷ lệ phông chữ , vì vậy nếu bạn chuyển qua một chữ mờ được dán nhãn là SP thay vì DP, thì nó sẽ nhận được tỷ lệ phông chữ hai lần .