亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

DialogFragment

發布時間:2020-06-26 02:36:33 來源:網絡 閱讀:234 作者:just2012xia 欄目:開發技術

Dialog類

public class TestDialog extends DialogFragment implements View.OnClickListener{
    TextView textView;
    EditText editText;
    Button button_save;
    Button button_dismiss;
    Button button_help;
              
    public static TestDialog newInstant(String prompt)
    {
        TestDialog td = new TestDialog();
        Bundle bundle = new Bundle();
        bundle.putString("prompt", prompt);
        td.setArguments(bundle);
        return td;
    }
    public void onClick(View arg0) {
        OnDialogDoneListener act = (OnDialogDoneListener) getActivity();
        if(arg0.getId() == R.id.btn_dismiss)
        {
            act.onDialogDone(getTag(), true, null);
            dismiss();
            return;
        }
        if(arg0.getId() == R.id.btn_help)
        {
                      
        }
        if(arg0.getId() == R.id.btn_save)
        {
//          TextView v = (TextView)getView().findViewById(R.id.textView);
            act.onDialogDone(getTag(), false, editText.getText());
            dismiss();
            return;
        }
    }
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        View v = inflater.inflate(R.layout.dialog, container, false);
                  
        textView = (TextView)v.findViewById(R.id.promptmessage);
        editText = (EditText)v.findViewById(R.id.inputtext);
                  
        button_save = (Button)v.findViewById(R.id.btn_save);
        button_dismiss = (Button)v.findViewById(R.id.btn_dismiss);
        button_help = (Button)v.findViewById(R.id.btn_help);
                  
        button_save.setOnClickListener(this);
        button_dismiss.setOnClickListener(this);
        button_help.setOnClickListener(this);
                  
        return v;
    }

activity實現自定義的一個借口,與Dialog類交互

public interface OnDialogDoneListener {
    public void onDialogDone(String tag, boolean cancel, CharSequence message);
}

activity類:

public class MainActivity extends Activity implements OnDialogDoneListener {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
//      getMenuInflater().inflate(R.menu.main, menu);
        super.onCreateOptionsMenu(menu);
        menu.add(0, 0, 0, "dialog");
        return true;
    }
    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // TODO Auto-generated method stub
        switch(item.getItemId())
        {
        case 0:
            testDialog();
        }
        return super.onOptionsItemSelected(item);
    }
    @TargetApi(Build.VERSION_CODES.HONEYCOMB)
    @SuppressLint("NewApi")
    private void testDialog()
    {
        TestDialog td = TestDialog.newInstant("xia");
        FragmentManager fm = getFragmentManager();
        FragmentTransaction ft = fm.beginTransaction();
        td.show(ft, "Test Dialog");
    }
    public void onDialogDone(String tag, boolean cancel, CharSequence message)
    {
        String s = tag + "responds with : " + message;
        if(cancel)
        {
            s = tag + " was cancelled by the user";
        }
        Toast.makeText(this, s, Toast.LENGTH_LONG);
        Log.v("log_debug", s);
    }
}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

海兴县| 梁河县| 湘西| 永安市| 尖扎县| 肇州县| 乌海市| 柳江县| 芜湖县| 中江县| 徐汇区| 安乡县| 天峻县| 黄骅市| 庐江县| 寻乌县| 六枝特区| 阿克苏市| 黔南| 老河口市| 凤冈县| 尤溪县| 大田县| 武平县| 陈巴尔虎旗| 咸宁市| 惠水县| 高安市| 舟山市| 静乐县| 云龙县| 开远市| 江西省| 福清市| 金昌市| 鄂托克旗| 繁峙县| 贵德县| 安国市| 左贡县| 青州市|