Android 는 Toast 를 사용 하여 메시지 알림 상 자 를 표시 합 니 다.

1224 단어 android
Toast 메시지 알림 상 자 를 실현 하 는 방법 은 두 가지 가 있 습 니 다.하 나 는 Toast 를 통 해 MakeText 방법 입 니 다.
 Toast.makeText(this,"makeText     ",Toast.LENGTH_SHORT).show();

2.Toast 구조 방법 을 통 해
Toast toast=new Toast(getBaseContext());
                LinearLayout linearLayout=new LinearLayout(getBaseContext());//         
                linearLayout.setOrientation(LinearLayout.VERTICAL);//      
                linearLayout.setBackgroundColor(Color.RED);//      
                //  ImagView      linearLayout        
                ImageView imageView=new ImageView(getBaseContext());
                imageView.setImageResource(R.mipmap.ic_launcher);
                linearLayout.addView(imageView);
                 //  TextView      linearLayout        
                TextView textView=new TextView(getBaseContext());
                textView.setText("           ");
                linearLayout.addView(textView);
     
                toast.setView(linearLayout);//          Toast 
                toast.setGravity(Gravity.CENTER_HORIZONTAL,0,200);//  Toast     x、y    
                toast.setDuration(Toast.LENGTH_SHORT);//  Toast    
                toast.show();

좋은 웹페이지 즐겨찾기