android 사용자 정의 가감 단추
1.두 shape 정의:
my_button_shape_normal.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<stroke
android:width="1dp"
android:color="#007FFF" />
<corners android:radius="5dip" />
<padding
android:bottom="1dp"
android:left="10dp"
android:right="10dp"
android:top="1dp" />
</shape>
my_button_shape_pressed.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<stroke
android:width="1dp"
android:color="#007FFF" />
<corners android:radius="5dip" />
<padding
android:bottom="1dp"
android:left="10dp"
android:right="10dp"
android:top="1dp" />
</shape>
2.drawable:my 정의button_style.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/my_button_shape_normal" android:state_focused="false" android:state_pressed="false"></item>
<item android:drawable="@drawable/my_button_shape_pressed" android:state_focused="false" android:state_pressed="true"></item>
</selector>
3.button 레이아웃 정의(mybutton.xml):
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/reduce"
android:layout_width="50dp"
android:layout_height="30dp"
android:background="@drawable/my_button_style"
android:gravity="center"
android:paddingBottom="10dp"
android:text="-"
android:textColor="#007FFF" />
<Button
android:id="@+id/add"
android:layout_width="50dp"
android:layout_height="30dp"
android:layout_toRightOf="@+id/reduce"
android:background="@drawable/my_button_style"
android:gravity="center"
android:paddingBottom="10dp"
android:text="+"
android:textColor="#007FFF" />
</RelativeLayout>
4.MyButton 클래스 정의:
public class MyButton extends RelativeLayout {
private View view;
private Button add, reduce;
private OnAddReduceChangeStatusListener mAddReduceChangeStatusListener;
public MyButton(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
// TODO Auto-generated constructor stub
}
public MyButton(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
view = LayoutInflater.from(context).inflate(R.layout.mybutton, this, true);
init();
}
public MyButton(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
private void init() {
add = (Button) view.findViewById(R.id.add);
reduce = (Button) view.findViewById(R.id.reduce);
add.setOnTouchListener(new ComponentOnTouch());
reduce.setOnTouchListener(new ComponentOnTouch());
}
class ComponentOnTouch implements OnTouchListener {
@Override
public boolean onTouch(View v, MotionEvent event) {
// TODO Auto-generated method stub
switch (v.getId()) {
case R.id.add:
if (mAddReduceChangeStatusListener != null) {
mAddReduceChangeStatusListener.add(MyButton.this.getId(),event.getAction());
}
break;
case R.id.reduce:
if (mAddReduceChangeStatusListener != null) {
mAddReduceChangeStatusListener.reduce(MyButton.this.getId(),event.getAction());
}
break;
}
return true;
}
}
public void setOnAddReduceChangeStatusListener(OnAddReduceChangeStatusListener listener) {
this.mAddReduceChangeStatusListener = listener;
}
public abstract interface OnAddReduceChangeStatusListener {
public abstract boolean add(int viewId,int eventAction);
public abstract boolean reduce(int viewId,int eventAction);
}
}
5.레이아웃 에서 사용:
<package.MyButton
android:id="@+id/mybutton_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</package.MyButton>
6.코드 에서 사용:a.초기 화:
mybutton = (MyButton) findViewById(R.id.mybutton_id);
mybutton.setOnAddReduceChangeStatusListener(new OnAddReduceListener());
b.listener 감청:
class OnAddReduceListener implements OnAddReduceChangeStatusListener {
@Override
public boolean add(int viewId, int eventAction) {
// TODO Auto-generated method stub
if (eventAction == MotionEvent.ACTION_DOWN) {
onTouchChange("add");
} else if (eventAction == MotionEvent.ACTION_UP) {
if (plusThread != null) {
isOnLongClick = false;
}
} else if (eventAction == MotionEvent.ACTION_MOVE) {
if (plusThread != null) {
isOnLongClick = true;
}
} else if (eventAction == MotionEvent.ACTION_CANCEL) {
if (plusThread != null) {
isOnLongClick = false;
}
}
return true;
}
@Override
public boolean reduce(int viewId, int eventAction) {
// TODO Auto-generated method stub
if (eventAction == MotionEvent.ACTION_DOWN) {
onTouchChange("reduce");
} else if (eventAction == MotionEvent.ACTION_UP) {
if (miusThread != null) {
isOnLongClick = false;
}
} else if (eventAction == MotionEvent.ACTION_MOVE) {
if (miusThread != null) {
isOnLongClick = true;
}
} else if (eventAction == MotionEvent.ACTION_CANCEL) {
if (miusThread != null) {
isOnLongClick = false;
}
}
return true;
}
}
private void onTouchChange(String method) {
if (method.equals("add")) {
plusThread = new PlusThread();
isOnLongClick = true;
plusThread.start();
} else if (method.equals("reduce")) {
miusThread = new MiusThread();
isOnLongClick = true;
miusThread.start();
}
}
c.두 스 레 드 를 가감 으로 정의 합 니 다.
//
class MiusThread extends Thread {
@Override
public void run() {
while (isOnLongClick) {
try {
Thread.sleep(200);
myHandler.sendEmptyMessage(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
super.run();
}
}
}
//
class PlusThread extends Thread {
@Override
public void run() {
while (isOnLongClick) {
try {
Thread.sleep(200);
myHandler.sendEmptyMessage(2);
} catch (InterruptedException e) {
e.printStackTrace();
}
super.run();
}
}
}
Handler 로 처리:
Handler myHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
// TODO Auto-generated method stub
if (msg.what == 1) {
//
} else if (msg.what == 2) {
//
}
}
};
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.