天天看點

Android Material Design Dialog



Android Material Design Dialog

如圖所示:

代碼實作:

package zhangphil.materialdesign;

import android.app.Activity;
import android.os.Bundle;
import android.support.v7.app.AlertDialog;
import android.view.View;
import android.widget.Button;

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		
		final	Activity activity=this;
		
		Button button=(Button) findViewById(R.id.button);
		button.setOnClickListener(new View.OnClickListener() {
			
			@Override
			public void onClick(View v) {
				AlertDialog.Builder builder = new AlertDialog.Builder(activity);
		        builder.setMessage("Android Material Design Dialog @ CSDN Zhang Phil")
		               .setNegativeButton("取消", null)
		               .setPositiveButton("确定", null)
		               .setTitle("Material Design Dialog")
		               .show();
			}
		});
	}
}
           

繼續閱讀