안드로이드 안드로이드 Context 클래스 인스턴스 상세 정보

3423 단어
1. 다음 코드 세그먼트와 같이 Toast 클래스의 첫 번째 매개 변수는 Context 객체를 수락합니다.

@Override 
 protected Dialog onCreateDialog(int id) { 
 switch (id) { 
 case 0: 
 
 Builder builder = new AlertDialog.Builder(this); 
 builder.setIcon(R.drawable.ic_launcher); 
 builder.setTitle("This is a dialog with some simple text..."); 
 builder.setPositiveButton("OK", 
  new DialogInterface.OnClickListener() { 
  public void onClick(DialogInterface dialog, 
  int whichButton) { 
  Toast.makeText(getBaseContext(), "OK clicked!", 
   Toast.LENGTH_SHORT).show(); 
  } 
  }); 
 
 builder.setNegativeButton("Cancel", 
  new DialogInterface.OnClickListener() { 
  public void onClick(DialogInterface dialog, 
  int whichButton) { 
  Toast.makeText(getBaseContext(), "Cancel clicked!", 
   Toast.LENGTH_SHORT).show(); 
  } 
  }); 
 
 builder.setMultiChoiceItems(items, itemsChecked, 
  new DialogInterface.OnMultiChoiceClickListener() { 
  public void onClick(DialogInterface dialog, int which, 
  boolean isChecked) { 
  Toast.makeText( 
   getBaseContext(), 
   items[which] 
   + (isChecked ? " checked!" 
    : " unchecked!"), 
   Toast.LENGTH_SHORT).show(); 
  } 
  }); 
 return builder.create(); 
 
 } 
 return null; 
 } 
@Override
 protected Dialog onCreateDialog(int id) {
 switch (id) {
 case 0:

 Builder builder = new AlertDialog.Builder(this);
 builder.setIcon(R.drawable.ic_launcher);
 builder.setTitle("This is a dialog with some simple text...");
 builder.setPositiveButton("OK",
  new DialogInterface.OnClickListener() {
  public void onClick(DialogInterface dialog,
  int whichButton) {
  Toast.makeText(getBaseContext(), "OK clicked!",
   Toast.LENGTH_SHORT).show();
  }
  });

 builder.setNegativeButton("Cancel",
  new DialogInterface.OnClickListener() {
  public void onClick(DialogInterface dialog,
  int whichButton) {
  Toast.makeText(getBaseContext(), "Cancel clicked!",
   Toast.LENGTH_SHORT).show();
  }
  });

 builder.setMultiChoiceItems(items, itemsChecked,
  new DialogInterface.OnMultiChoiceClickListener() {
  public void onClick(DialogInterface dialog, int which,
  boolean isChecked) {
  Toast.makeText(
   getBaseContext(),
   items[which]
   + (isChecked ? " checked!"
    : " unchecked!"),
   Toast.LENGTH_SHORT).show();
  }
  });
 return builder.create();

 }
 return null;
 }

그러나 Toast 클래스는 Activity에 직접 사용되지 않고 AlertDialog 클래스에 사용됩니다.따라서 getBaseContext () 방법으로 Context 클래스의 실례를 가져와야 합니다.
2.Activity에서 보기를 동적으로 만들 때도 Context를 만날 수 있습니다.
예를 들어, 하드 인코딩을 통해 TextView를 동적으로 생성하려면 다음과 같이 하십시오.

TextView tv = new TextView(this); 
TextView tv = new TextView(this); 

TextView의 구조기는 Context 대상을 받아들인다. Activity 클래스는 Context 클래스의 하위 클래스이기 때문에this 키워드로 이 Conext 대상을 대체할 수 있다.
팁:
this를 사용하여 보기를 동적으로 만듭니다. 예를 들어 TextView, Button 등은 잠재적인 위험인 메모리 유출이 존재합니다.따라서 가능한 getapplicationContext () 방법으로this를 대체합니다.

좋은 웹페이지 즐겨찾기