Android编程实现Dialog窗体监听的⽅法本⽂实例讲述了Android编程实现Dialog窗体监听的⽅法。分享给⼤家供⼤家参考,具体如下:
今天做了⼀个Dialong窗体监听包括窗体内的xml监听。
效果图:
test.class代码
st;
import Android.app.Activity;
import android.app.AlertDialog;
t.Context;
t.DialogInterface;
import android.os.Bundle;
Layout;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.TextView;
public class test extends Activity implements OnClickListener {
private ImageButton button=null;
@Override
public void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.main);
button=(ImageButton)findViewById(R.id.button);
//监听
button.setOnClickListener(this);
}
@Override
public void onClick(View v) {
Windows();
}
private void Windows() {
/
/接受⼀些参数如:图⽚,标题,正⽂
AlertDialog.Builder builder;
AlertDialog alertDialog;
//加载和访问资源
Context mContext =test.this;
//通过LayoutInlater得到上⾯xml布局的View view
LayoutInflater inflater =
(SystemService(LAYOUT_INFLATER_SERVICE);
View layout =inflater.inflate(R.layout.custom_dialog,null);
//绑定test和image
TextView text=(TextView)layout.findViewById();
text.setText("hello");
Button b =(Button)layout.findViewById(R.id.b);
b.setText("butto");
b.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
System.out.println("123");
}
});
ImageView image=(ImageView)layout.findViewById(R.id.image);
//取出系统⾃带的图⽚
image.setImageResource(R.drawable.icon);
//加载
builder = new AlertDialog.Builder(mContext);
builder.setView(layout);
//创建⽬标,这⾥创建相应的AlertDialog
//  alertDialog = ate();
alertdialog使用方法//弹出窗⼝
builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog,
int which) {
}
}).setNegativeButton("取消",
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog,
int which) {
dialog.cancel();
}
}).create();
builder.show();
}
}
l⽂件代码
<?xml version="1.0"
encoding="utf-8"?>
<LinearLayout
xmlns:android="schemas.android/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
>
<ImageView android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginRight="10dp"
/>
<TextView android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:textColor="#FFF"
/>
<Button android:id="@+id/b"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
/>
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="schemas.android/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<ImageButton
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#000000"
android:src="@drawable/icon"
/
>
</LinearLayout>
结尾:由于要⽤到两个xml所以这⾥有两个xml的代码,⼀个是点击按钮的xml代码,⼀个窗体⾥⾯的xml布局带更多关于Android相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》及《》
希望本⽂所述对⼤家Android程序设计有所帮助。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。