Android 화살표 안내 tipLayout 구현 예시 코드
위 에서 UI 에서 받 은 설계도 와 같이 삼각형 표시 기 는 위의 텍스트 를 동적 으로 정렬 해 야 하고 삼각형 을 동적 으로 실현 해 야 한다.
인용 방식
compile 'com.xiaowei:TriangleTipLayout:1.0.0'
사고의 방향 을 실현 하 다.삼각형 안내 그림 을 준비 하면 됩 니 다.
선행 코드
final TextPaint textPaint = mTextView.getPaint();
final int textHeight = (int) (textPaint.descent() - textPaint.ascent());
mRect.set(0, DEFAULT_TOP_HEIGHT, getWidth(), getHeight() + textHeight - DEFAULT_TOP_HEIGHT);
canvas.drawRect(mRect, mRectPaint);
final String text = mTextView.getText().toString();
float left = 0;
if (mIsShowTriangle) {
if (mGravity == Gravity.LEFT || mGravity == Gravity.START) {
LayoutParams layoutParams = (LayoutParams) mTarget.getLayoutParams();
left = mTarget.getLeft() - layoutParams.rightMargin - layoutParams.leftMargin;
} else {
if (mTarget instanceof TextView) {
ViewParent viewParent = mTarget.getParent();
float textWidth = textPaint.measureText(text);
if (viewParent instanceof LinearLayout) {
final float width = mTarget.getWidth() / 2;
left = mTarget.getLeft() + width - (mBitmap.getWidth() / 2);
} else if (viewParent instanceof RelativeLayout) {
left = mTarget.getLeft() + textWidth / 2;
}
} else if (mTarget instanceof ImageView) {
final float width = mTarget.getWidth();
left = mTarget.getLeft() + (width / 2) - (mBitmap.getWidth() / 2);
}
}
canvas.drawBitmap(mBitmap, left, 0, mBitmapPaint);
}
}
핵심 코드 는 위 와 같다.그 사고방식 은 먼저 사각형 을 그리고 삼각형 이 필요 로 하 는 높이 를 미리 남 겨 두 고 마지막 에 세 줄 의 그림 을 그 리 는 것 이다.설정 표시 기
mTipsLayout.setRectBackgroundColor(Color.parseColor("#FFF8BE"));
mTipsLayout.setTextColor(Color.parseColor("#FF9B33"));
mTipsLayout.setTriangleBitmap(BitmapFactory.decodeResource(getResources(), R.mipmap.ic_triangle_arrow));
mTipsLayout.setTriangleGravity(Gravity.START);
mTipsLayout.bindView(findViewById(R.id.text2));
mTipsLayout.setText(" 10W+, 。 ");
메모:setText 를 호출 하면 invalidate()를 다시 그립 니 다.실현 효 과 는 다음 과 같다.
github: 소스 코드
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.