gpt4 book ai didi

java - 在Android自定义组件上添加setOnClickListener

转载 作者:行者123 更新时间:2023-12-01 09:45:22 24 4
gpt4 key购买 nike

在为 Android 制作自定义组件时,据我了解,我需要:

  • 一个包含组件布局的 xml 文件;
  • 一个 Java 类。

尝试制作一个,仅供练习。在 XML 中使用两个进度条和一个按钮,并创建该类,比在我的主要 Activity 中尝试的效果更好。

但现在我正在寻找如何通过 Activity 在我的按钮上设置 OnClickListener,在这部分我迷失了。

我的loading_button.xml:

<merge
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<RelativeLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<ProgressBar
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="4dp"
android:progress="0"
android:id="@+id/pg_top" />

<Button
android:text="Button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/btn_ok"
android:background="@color/colorPrimary"
android:textColor="#ffffff"
android:layout_below="@+id/pg_top"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />

<ProgressBar
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="5dp"
android:progress="0"
android:id="@+id/pg_bottom"
android:layout_below="@+id/btn_ok"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />

</RelativeLayout>

</merge>

这里是LoadingButton.java:

public class LoadingButton extends RelativeLayout{

private ProgressBar pbTop;
private ProgressBar pbBottom;
private Button btnOk;

private int pbTopProgress = 0;
private int pbBottomProgress = 0;

public LoadingButton(Context context, AttributeSet attrs) {
super(context, attrs);
View view = View.inflate(context, R.layout.loading_button, this);

btnOk = (Button) view.findViewById(R.id.btn_ok);
pbTop = (ProgressBar) view.findViewById(R.id.pg_top);
pbBottom = (ProgressBar) view.findViewById(R.id.pg_bottom);

btnOk.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// Doing stuff ok
}
});

}// LoadingButton
}

类中的 setOnClickListener 可以工作,但如何从我的主要 Activity 中设置它?

主要 Activity :

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

// My new component (it's id in activity_main.xml is 'lb')
LoadingButton lb = (LoadingButton) findViewById(R.id.lb);

// QUESTION - how to make something like this with btnOk:
lb.btnOkSetOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// Do stuff
}
});
}
}

如果可以的话,如何实现?

如果没有,制作自定义组件并在此组件的特定元素上设置 clickListeners 的正确方法是什么?

最佳答案

处理 LoadingButton 中所有 View 单击的最佳方法(对于自定义 View )。并创建接口(interface)。

public class LoadingButton extends RelativeLayout {


public interface OnLoadingButtonClickListener{
void onLoadingButtonClickListener();
}

private ProgressBar pbTop;
private ProgressBar pbBottom;
private Button btnOk;

private int pbTopProgress = 0;
private int pbBottomProgress = 0;
private OnLoadingButtonClickListener mONOnLoadingButtonClickListener;

public LoadingButton(Context context, AttributeSet attrs) {
super(context, attrs);
View view = View.inflate(context, R.layout.loading_button, this);

btnOk = (Button) view.findViewById(R.id.btn_ok);
pbTop = (ProgressBar) view.findViewById(R.id.pg_top);
pbBottom = (ProgressBar) view.findViewById(R.id.pg_bottom);

btnOk.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if(mONOnLoadingButtonClickListener != null){
mONOnLoadingButtonClickListener.onLoadingButtonClickListener();
}
}
});

}// LoadingButton

public void setOnLoadingClickListener(OnLoadingButtonClickListener onLoadingClickListener){
mONOnLoadingButtonClickListener = onLoadingClickListener;
}


}

并在您的 Activity 中实现 OnLoadingButtonClickListener。

public class MainActivity extends AppCompatActivity implements LoadingButton.OnLoadingButtonClickListener {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

// My new component (it's id in activity_main.xml is 'lb')
LoadingButton lb = (LoadingButton) findViewById(R.id.lb);
lb.setOnLoadingClickListener(this);

}

@Override
public void onLoadingButtonClickListener() {
//do your stuff on ok button click
}
}

关于java - 在Android自定义组件上添加setOnClickListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38099493/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com