Android 사용자 정의 컨트롤 전화 키보드
1、MyPhoneCard.java
/**
*
* 4*3 ,
*
*
*/
public class MyPhoneCard extends ViewGroup{
private static final int COLUMNS = 3;
private static final int ROWS = 4;
private static final int NUM_BUTTON = COLUMNS*ROWS;
private View[] mButtons = new View[NUM_BUTTON];
private int mButtonWidth;
private int mButtonHeight;
private int mPaddingLeft;
private int mPaddingRight;
private int mPaddingTop;
private int mPaddingBottom;
private int mWidthInc;
private int mHeightInc;
private int mWidth;
private int mHeight;
public MyPhoneCard(Context context) {
super(context);
}
public MyPhoneCard(Context context, AttributeSet attrs){
super(context,attrs);
}
public MyPhoneCard(Context context, AttributeSet attrs, int defStyle){
super(context,attrs,defStyle);
}
/**
* xml ,
* , ViewGroup
*/
@Override
protected void onFinishInflate(){
super.onFinishInflate();
final View[] btns = mButtons;
for(int i=0; i<NUM_BUTTON; i++){
btns[i] = this.getChildAt(i);
btns[i].measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
}
//
final View child = btns[0];
mButtonWidth = child.getMeasuredWidth();
mButtonHeight = child.getMeasuredHeight();
mPaddingLeft = this.getPaddingLeft();
mPaddingRight = this.getPaddingRight();
mPaddingTop = this.getPaddingTop();
mPaddingBottom = this.getPaddingBottom();
mWidthInc = mButtonWidth + mPaddingLeft + mPaddingRight;
mHeightInc = mButtonHeight + mPaddingTop + mPaddingBottom;
mWidth = mWidthInc*COLUMNS;
mHeight = mHeightInc*ROWS;
Log.v("Finish Inflate:", "btnWidth="+mButtonWidth+",btnHeight="+mButtonHeight+",padding:"+mPaddingLeft+","+mPaddingTop+","+mPaddingRight+","+mPaddingBottom);
}
/**
* onFinishInflate ,onLayout 。
*/
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec){
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
Log.v("ViewGroup SIZE:width=", mWidth+"");
Log.v("ViewGroup SIZE: height=",mHeight+"");
final int width = resolveSize(mWidth, widthMeasureSpec);// ,
final int height = resolveSize(mHeight,heightMeasureSpec);// ,
Log.v("ViewGroup Measured SIZE: width=", width+"");
Log.v("ViewGroup Measured SIZE: height=", height+"");
// , 。
setMeasuredDimension(width, height);
}
/**
* onMeasure , 12 ( ), , ,
* layout,
* 4*3 , ,
*/
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
final View[] buttons = mButtons;
int i = 0;
Log.v("BOTTOM:", bottom+"");
Log.v("TOP", top+"");
int y = (bottom - top) - mHeight + mPaddingTop;// bottom-top=mHeight, y=mPaddingTop
Log.v("Y=", y+"");
for(int row=0; row<ROWS; row++){
int x = mPaddingLeft;
for(int col = 0; col < COLUMNS; col++){
buttons[i].layout(x, y, x+mButtonWidth, y+mButtonHeight);
x = x + mWidthInc;
i++;
}
y = y + mHeightInc;
}
}
}
2.레이아웃 파일:
<?xml version="1.0" encoding="utf-8"?>
<demo.phone.card.MyPhoneCard
xmlns:android="http://schemas.android.com/apk/res/android"
android:id = "@+id/dialpad"
android:paddingLeft="7dp"
android:paddingRight="7dp"
android:paddingTop="6dp"
android:paddingBottom="6dp"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp">
<ImageButton android:id="@+id/one"
android:src="@drawable/dial_num_1_no_vm"
style="@style/dial_btn_style"
/>
<ImageButton android:id="@+id/two"
android:src="@drawable/dial_num_2"
style="@style/dial_btn_style"/>
<ImageButton android:id="@+id/three"
android:src="@drawable/dial_num_3"
style="@style/dial_btn_style"/>
<ImageButton android:id="@+id/four"
android:src="@drawable/dial_num_4"
style="@style/dial_btn_style"/>
<ImageButton android:id="@+id/five"
android:src="@drawable/dial_num_5"
style="@style/dial_btn_style"/>
<ImageButton android:id="@+id/six"
android:src="@drawable/dial_num_6"
style="@style/dial_btn_style"/>
<ImageButton android:id="@+id/seven"
android:src="@drawable/dial_num_7"
style="@style/dial_btn_style"/>
<ImageButton android:id="@+id/eight"
android:src="@drawable/dial_num_8"
style="@style/dial_btn_style"/>
<ImageButton android:id="@+id/nine"
android:src="@drawable/dial_num_9"
style="@style/dial_btn_style"/>
<ImageButton android:id="@+id/star"
android:src="@drawable/dial_num_star"
style="@style/dial_btn_style"/>
<ImageButton android:id="@+id/zero"
android:src="@drawable/dial_num_0"
style="@style/dial_btn_style"/>
<ImageButton android:id="@+id/pound"
android:src="@drawable/dial_num_pound"
style="@style/dial_btn_style"/>
</demo.phone.card.MyPhoneCard>
이렇게 해서 위의 그림 의 작은 키 보드 를 실현 했다.이 예 는 안 드 로 이 드 자체 전화 애플 리 케 이 션 의 실현 을 참고 한다.이 를 통 해 알 수 있 듯 이 개발 에서 사용자 정의 컨트롤 을 유연 하 게 활용 하면 독특 하고 매력 적 인 효 과 를 얻 을 수 있 습 니 다!이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.