0

データベースに存在する d 文字列データの 1 つをランダムまたはシーケンスで表示するポップアップが必要です。この種のポップアップにはどのコードを使用する必要がありますか。Android開発に非常に慣れていません。助けていただければ幸いです。これを未回答のままにしないでください。

package popupTest.popupTest;

import android.R.layout;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup.LayoutParams;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.PopupWindow;
import android.widget.TextView;

public class popupTest extends Activity {

 PopupWindow popUp;
 LinearLayout layout;
 TextView tv;
 LayoutParams params;
 LinearLayout mainLayout;
 Button but;
 boolean click = true;

 @Override
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  popUp = new PopupWindow(this);
  layout = new LinearLayout(this);
  mainLayout = new LinearLayout(this);
  tv = new TextView(this);
  but = new Button(this);
  but.setText("Click Me");



  params = new LayoutParams(LayoutParams.WRAP_CONTENT,
    LayoutParams.WRAP_CONTENT);
  layout.setOrientation(LinearLayout.VERTICAL);
  tv.setText("Hi this is a sample text for popup window");
  layout.addView(tv, params);
  popUp.setContentView(layout);
  // popUp.showAtLocation(layout, Gravity.BOTTOM, 10, 10);
  mainLayout.addView(but, params);
  setContentView(mainLayout);

    Handler handler = new Handler();
      handler.postDelayed(new Runnable(){

        public void run() {
            // TODO Auto-generated method stub
            popUp.showAtLocation(layout, Gravity.BOTTOM, 10, 10);
             popUp.update(50, 50, 300, 80);
        }

      }, 1000);
  //Use this to dismiss as per your need...
    // popUp.dismiss();

 }
 @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
         popUp.dismiss();
        return false;

    }
}

このコードは役に立ちますか?

4

2 に答える 2

0

いくつかの情報をポップアップ表示するには、最も一般的に使用される 2 つの方法があります。

  • トースト
  • アラートダイアログ

トースト:

特定の時間表示され、いくつかの情報が表示されてから消えます。

ダイアログ:

メッセージは表示されますが、ユーザーが「OK」ボタンなどのボタンを押すまで画面から消えません。

乾杯用:

 Toast.makeText(getApplicationContext(), "your message here", Toast.LENGTH_LONG).show();

ダイアログの場合:

AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(getApplicationContext());

 alertDialogBuilder.setTitle("Your Title");

 alertDialogBuilder.setMessage("This is to notify you");

 alertDialogBuilder.show();
 alertDialogBuilder.setButton("OK", new DialogInterface.OnClickListener() {

                    public void onClick(DialogInterface dialog,int which) 
                    {
                        // Write your code here to execute after dialog closed
                    Toast.makeText(getApplicationContext(),"You clicked on OK", Toast.LENGTH_SHORT).show();
                    }
                });
于 2013-08-03T15:49:01.437 に答える
0

これには Toast が最も簡単です。

Toast.makeText(getApplicationContext(), "Button is clicked", Toast.LENGTH_LONG).show();

例: http://www.mkyong.com/android/android-toast-example/

于 2013-08-03T15:37:24.973 に答える