我是android的新手。我正在开发一个小型的基本应用程序。我的应用程序中有四个按钮。我需要的是当用户按下按钮时,我想要一个全屏显示的对话框和特定的{ {1}}。例如: 我有以下按钮,如: 1)英雄 2)电影。按下英雄按钮时,英雄列表应该与电影类似。我知道的唯一方法就是为每个按键创建一个新的活动。相反,我想要为所有四个按钮显示一个对话框,但对话框上显示的数据应该根据按钮而有所不同。这可能吗?我知道这个问题很冗长,可以用更好的方式询问。请给我任何建议
答案 0 :(得分:0)
创建一个方法,创建具有所需Dialog
个数量的自定义TextView
,并将String
值传递给方法
参考此示例
dialog_layout
<ImageView
android:id="@+id/imageDialog"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="6dp" />
<TextView
android:id="@+id/textDialog"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#FFF"
android:layout_toRightOf="@+id/imageDialog"/>
<Button
android:id="@+id/declineButton"
android:layout_width="100px"
android:layout_height="wrap_content"
android:text=" Submit "
android:layout_marginTop="5dp"
android:layout_marginRight="5dp"
android:layout_below="@+id/textDialog"
android:layout_toRightOf="@+id/imageDialog"
/>
将此showDialog()
方法放入活动
private void showDialog(){
final Dialog dialog = new Dialog(CustomDialog.this);
// Include dialog.xml file
dialog.setContentView(R.layout.dialog);
// Set dialog title
dialog.setTitle("Custom Dialog");
// Set Dialog fullscreen
dialog.getWindow().setFlags(LayoutParams.FLAG_FULLSCREEN, LayoutParams.FLAG_FULLSCREEN);
// set values for custom dialog components - text, image and button
TextView text = (TextView) dialog.findViewById(R.id.textDialog);
text.setText("Custom dialog Android example.");
ImageView image = (ImageView) dialog.findViewById(R.id.imageDialog);
image.setImageResource(R.drawable.image0);
dialog.show();
Button declineButton = (Button) dialog.findViewById(R.id.declineButton);
// if decline button is clicked, close the custom dialog
declineButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// Close dialog
dialog.dismiss();
}
});
}
请参阅此处的完整示例http://androidexample.com/Custom_Dialog_-_Android_Example/index.php?view=article_discription&aid=88