私はアンドロイドを初めて使用し、次のステートメントに感銘を受けました。
Builder builder = new AlertDialog.Builder(this);
しかし、Builder は class の static 内部クラスであることがわかっているAlertDialoge
ため、ステートメントは次のようになります。
AlertDialog.Builder builder= new Alertdialog.Builder(this);
私はアンドロイドを初めて使用し、次のステートメントに感銘を受けました。
Builder builder = new AlertDialog.Builder(this);
しかし、Builder は class の static 内部クラスであることがわかっているAlertDialoge
ため、ステートメントは次のようになります。
AlertDialog.Builder builder= new Alertdialog.Builder(this);