gpt4 book ai didi

android - 在对话框布局的属性中使用 "onclick"android

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:43:38 25 4
gpt4 key购买 nike

我有一个这样的 Activity :

TextView txt_bank = (TextView) findViewById(R.id.txt_search_bank);
txt_bank.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {
dialog_bank = new Dialog(Activity_Search2.this);

dialog_bank.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
dialog_bank.setContentView(R.layout.list_bank);
dialog_bank.show();

现在在 list_bank.xml 中,我有大约 20 个图像,我想将它们的 onClick 字段(在属性窗口的布局中)设置为一个方法。问题是找不到我的方法,因为这个方法应该在布局的 Activity 中,但这是一个对话框,没有任何 Activity 请帮助我如何使用 onClick

最佳答案

我不确定这是您问题的绝对答案。但我想可能是你的问题的答案变成了这样。比如

请按照此步骤操作。

1 个安卓布局文件

文件:res/layout/main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<Button
android:id="@+id/buttonShowCustomDialog"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Show Custom Dialog" />

</LinearLayout>

文件:res/layout/custom.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="5dp" />

<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#FFF"
android:layout_toRightOf="@+id/image"/>/>

<Button
android:id="@+id/dialogButtonOK"
android:layout_width="100px"
android:layout_height="wrap_content"
android:text=" Ok "
android:layout_marginTop="5dp"
android:layout_marginRight="5dp"
android:layout_below="@+id/image"
/>

</RelativeLayout>
  1. Activity

文件:MainActivity.java

public class MainActivity extends Activity {

final Context context = this;
private Button button;

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);
setContentView(R.layout.main);

button = (Button) findViewById(R.id.buttonShowCustomDialog);

// add button listener
button.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {

// custom dialog
final Dialog dialog = new Dialog(context);
dialog.setContentView(R.layout.custom);
dialog.setTitle("Title...");

// set the custom dialog components - text, image and button
TextView text = (TextView) dialog.findViewById(R.id.text);
text.setText("Android custom dialog example!");
ImageView image = (ImageView) dialog.findViewById(R.id.image);
image.setImageResource(R.drawable.ic_launcher);

Button dialogButton = (Button) dialog.findViewById(R.id.dialogButtonOK);
// if button is clicked, close the custom dialog
dialogButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
dialog.dismiss();
}
});

dialog.show();
}
});
}
}

祝你好运!

关于android - 在对话框布局的属性中使用 "onclick"android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22117320/

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