2017-09-08 7 views
0

나는이 그래서 여기 내 예제 코드? 안드로이드

public void onPageFinished(WebView view, String url) { 

if (!getSharedPreferences("MainA_SP", MODE_PRIVATE) 
     .getBoolean("checkbox", false)) { 

    AlertDialog.Builder adb=new AlertDialog.Builder(MainA.this); 
    LayoutInflater adbInflater = LayoutInflater.from(MainA.this); 
    View eulaLayout = adbInflater.inflate(R.layout.instpopup, null); 
    chkbx = (CheckBox)eulaLayout.findViewById(R.id.skip); 
    adb.setView(eulaLayout); 
    adb.setTitle("Welcome To Sample Page"); 
    adb.setMessage(Html.fromHtml("App Instructions .....")); 
    adb.setPositiveButton("Ok", new DialogInterface.OnClickListener() { 
     public void onClick(DialogInterface dialog, int which) { 
      String checkBoxResult = "NOT checked"; 
      if (chkbx.isChecked()) checkBoxResult = "checked"; 
      SharedPreferences settings = getSharedPreferences(MainA_SP, 0); 
      SharedPreferences.Editor editor = settings.edit(); 
      editor.putString("skipMessage", checkBoxResult); 
      // Commit the edits! 
      editor.commit(); 
      return; 
     } }); 

    adb.setNegativeButton("Cancel", new DialogInterface.OnClickListener() { 
     public void onClick(DialogInterface dialog, int which) { 
      String checkBoxResult = "NOT checked"; 
      if (chkbx.isChecked()) checkBoxResult = "checked"; 
      SharedPreferences settings = getSharedPreferences(MainA_SP, 0); 
      SharedPreferences.Editor editor = settings.edit(); 
      editor.putString("skipMessage", checkBoxResult); 
      // Commit the edits! 
      editor.commit(); 
      return; 
     } }); 
    SharedPreferences settings = getSharedPreferences(MainA_SP, 0); 
    String skipMessage = settings.getString("skipMessage", "NOT checked"); 
    if (!skipMessage.equalsIgnoreCase("checked")) adb.show(); 
} 

try{ 
    if (progressBar.isShowing()) { 
     progressBar.dismiss(); 
     . 
     . 
     . 
     . 

    } 
}catch(Exception exception){ 
    exception.printStackTrace(); 
} 
} 

입니다 완료 점에서 웹보기 내가 웹보기 페이지 로딩에 몇 가지 지침 페이지를 제공하고 있습니다 체크 박스와 sharedprefs

을하지만 문제와의 작업을 잘 내가 페이지 로딩에이 경고를 감안할 때 그래서 내가 하나의 URL을 하나의 페이지

,174에 대한 경고를 여러 번 얻고 완료인가요

은 내가 업데이트

을 자사가 표시되지하지만 먼저 실행을 위해 경고가 여러 번

을 표시하는 확인란을 선택하면 ... 내가 보여주고 싶은 경고를 내가 앱을 열 때마다를 클릭해야 페이지에 대한 경고가 성공적으로 완료되었습니다.

답변

0

완료 후 즉시 경고를 표시하려면 부울 값을 사용하여 표시 여부를 다음 예와 같이 점검하십시오.

private boolean alertVisiblity = false; 

onPageFinished(){ 

//show your alert here 
if(!alertVisiblity){ 
alertVisiblity = true; 
new AlertDialog.Builder(MainActivity.this) 
       .setCancelable(false) 
       .setTitle("Alert") 
       .setPositiveButton("OK", new DialogInterface.OnClickListener() { 
        @Override 
        public void onClick(DialogInterface dialogInterface, int i) { 
         dialogInterface.dismiss(); 
         alertVisiblity = false; //or if you want to show it once never make it false or you can make it false before next call 
        } 
       }).show(); 


} 
+0

덕분에 사용자 @의 SwapnilNandapur ... 내 질문은 해당 웹 페이지로드 I 페이지 성공적으로로드에 경고를 표시 할 (I는이 표시되지 않습니다 확인란을 선택하는 경우) 경고가 처음으로 지속적으로 게재되고 완료되면 – MLN