android 달력 아이콘 표시 요일
현재 나는 달력 아이콘에 대응하는 주를 표시할 수 있는 몇 줄의 코드를 추가했다.
소스 수정은 Utilities에 있습니다.java 중
함수createCalendarIconBitmap
코드 행을 추가하려면 다음과 같이 하십시오.
int dayOfWeek = Calendar.getInstance().get(Calendar.DAY_OF_WEEK);
String weekStrings[] = {" "," "," "," "," "," "," "};
String weekString = weekStrings[dayOfWeek];
Paint mWeekPaint = new Paint();
mWeekPaint.setTypeface(Typeface.DEFAULT_BOLD);
mWeekPaint.setTextSize((int)10F * mDensity);
mWeekPaint.setColor(0xff000000);
mWeekPaint.setAntiAlias(true);
Rect rect1 = new Rect();
mWeekPaint.getTextBounds(weekString,0,weekString.length(),rect1);
int hoffset0 = 2;
int width10 = rect1.right - rect1.left;
int height10 = rect1.bottom - rect1.top + hoffset0;
int width20 = calendarIcon.getWidth();
int height20 = calendarIcon.getHeight() ;//+ hoffset0;
canvas.drawText(weekString,(width20 - width10)/2 - rect1.left,height10,mWeekPaint);
수정된 함수는 다음과 같습니다.
static Bitmap createCalendarIconBitmap(Drawable icon, Context context){
Bitmap calendarIcon = createIconBitmap(icon,context);
String dayString = String.valueOf(Calendar.getInstance().get(Calendar.DAY_OF_MONTH));
int dayOfWeek = Calendar.getInstance().get(Calendar.DAY_OF_WEEK);
String weekStrings[] = {" "," "," "," "," "," "," "};
String weekString = weekStrings[dayOfWeek];
Log.d("tanfusheng","weekString"+weekString);
synchronized (sCanvas) {
final Canvas canvas = sCanvas;
canvas.setBitmap(calendarIcon);
final float mDensity = context.getResources().getDisplayMetrics().density;
Paint mWeekPaint = new Paint();
mWeekPaint.setTypeface(Typeface.DEFAULT_BOLD);
mWeekPaint.setTextSize((int)10F * mDensity);
mWeekPaint.setColor(0xff000000);
mWeekPaint.setAntiAlias(true);
Rect rect1 = new Rect();
mWeekPaint.getTextBounds(weekString,0,weekString.length(),rect1);
int hoffset0 = 2;
int width10 = rect1.right - rect1.left;
int height10 = rect1.bottom - rect1.top + hoffset0;
int width20 = calendarIcon.getWidth();
int height20 = calendarIcon.getHeight() ;//+ hoffset0;
canvas.drawText(weekString,(width20 - width10)/2 - rect1.left,height10,mWeekPaint);
Paint mDatePaint = new Paint();
mDatePaint.setTypeface(Typeface.DEFAULT_BOLD);
mDatePaint.setTextSize((int)30F * mDensity);
mDatePaint.setColor(0xff000000);
mDatePaint.setAntiAlias(true);
Rect rect = new Rect();
mDatePaint.getTextBounds(dayString,0,dayString.length(),rect);
int hoffset = 20;
int width1 = rect.right - rect.left;
int height1 = rect.bottom - rect.top;
int width2 = calendarIcon.getWidth();
int height2 = calendarIcon.getHeight() + hoffset;
canvas.drawText(dayString,(width2 - width1)/2 - rect.left,(height2 - height1)/2 - rect.top,mDatePaint);
canvas.setBitmap(null);
return calendarIcon;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
js 마우스 이동 방향을 판단하는 방법PC 단말기의 마우스를 옮겨 옮기는 효과가 매우 좋다. 여기서 마우스를 옮겨 옮기는 방법을 판단하고 틈이 나면 효과가 있는 글을 보내지만 물고기를 주는 것보다 물고기를 잡는 것이 낫다. 이 방법이 있는데 효과가 so...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.