久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<tfoot id='FQHWo'></tfoot>

    1. <i id='FQHWo'><tr id='FQHWo'><dt id='FQHWo'><q id='FQHWo'><span id='FQHWo'><b id='FQHWo'><form id='FQHWo'><ins id='FQHWo'></ins><ul id='FQHWo'></ul><sub id='FQHWo'></sub></form><legend id='FQHWo'></legend><bdo id='FQHWo'><pre id='FQHWo'><center id='FQHWo'></center></pre></bdo></b><th id='FQHWo'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='FQHWo'><tfoot id='FQHWo'></tfoot><dl id='FQHWo'><fieldset id='FQHWo'></fieldset></dl></div>
    2. <small id='FQHWo'></small><noframes id='FQHWo'>

        <bdo id='FQHWo'></bdo><ul id='FQHWo'></ul>
    3. <legend id='FQHWo'><style id='FQHWo'><dir id='FQHWo'><q id='FQHWo'></q></dir></style></legend>

      從 EditText 獲取文本字符串?

      Get text string from EditText?(從 EditText 獲取文本字符串?)

        <bdo id='cvvfb'></bdo><ul id='cvvfb'></ul>
          <legend id='cvvfb'><style id='cvvfb'><dir id='cvvfb'><q id='cvvfb'></q></dir></style></legend>

          1. <i id='cvvfb'><tr id='cvvfb'><dt id='cvvfb'><q id='cvvfb'><span id='cvvfb'><b id='cvvfb'><form id='cvvfb'><ins id='cvvfb'></ins><ul id='cvvfb'></ul><sub id='cvvfb'></sub></form><legend id='cvvfb'></legend><bdo id='cvvfb'><pre id='cvvfb'><center id='cvvfb'></center></pre></bdo></b><th id='cvvfb'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='cvvfb'><tfoot id='cvvfb'></tfoot><dl id='cvvfb'><fieldset id='cvvfb'></fieldset></dl></div>
          2. <small id='cvvfb'></small><noframes id='cvvfb'>

                  <tbody id='cvvfb'></tbody>
              • <tfoot id='cvvfb'></tfoot>
                本文介紹了從 EditText 獲取文本字符串?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                我似乎不知道如何從 EditText 中獲取文本字符串.我想在按下按鈕時使用 EditText 中的文本.

                It seems I can't figure out how to get the text string out of EditText. I want to use the text from the EditText at pressing the button.

                layout.xml:

                layout.xml :

                <?xml version="1.0" encoding="utf-8"?>
                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                    android:id="@+id/popup_menu_root"
                    android:background="#FFFFFF"
                    android:orientation="vertical"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent" >
                    <Button android:id="@+id/popup_menu_button"
                        android:text="ok"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content" />
                    <EditText
                        android:id="@+id/edittext"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"/>
                </LinearLayout>
                

                我的活動:

                public class MyClass extends Activity {
                
                  public String txtCheckin = "???";
                  private String txtDescription = "???";
                  private PopupWindow pw;
                
                  @Override
                  public void onCreate(Bundle icicle) {
                    super.onCreate(icicle);
                
                    // get the instance of the LayoutInflater
                    LayoutInflater inflater = (LayoutInflater) MyClass.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                    // inflate our view from the corresponding XML file
                    final View layout = inflater.inflate(R.layout.popuplayout, (ViewGroup)findViewById(R.id.popup_menu_root));
                    // create a 100px width and 200px height popup window
                    pw = new PopupWindow(layout, 100, 200, true);
                
                    final EditText edittextDescription = (EditText) findViewById(R.id.edittext);
                
                    // set actions to buttons we have in our popup
                    Button button = (Button)layout.findViewById(R.id.popup_menu_button);
                    button.setOnClickListener(new OnClickListener() {
                        @Override
                        public void onClick(View vv) {
                
                
                        if (edittextDescription.getText() != null)
                        {
                            String newString = edittextDescription.getText().toString();
                            transmitCheck("MANUAL", txtCheckin, "1", newString);
                        }
                        else
                        {
                            transmitCheck("MANUAL", txtCheckin, "1", "???");
                        }
                
                
                        finish();
                        }
                    });
                }
                

                推薦答案

                EditText txtDescription =
                        (EditText) layout.findViewById(R.id.txtDescription);
                
                
                String message = txtDescription.getText().toString(); 
                

                這篇關于從 EditText 獲取文本字符串?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                相關文檔推薦

                How can I detect integer overflow on 32 bits int?(如何檢測 32 位 int 上的整數溢出?)
                Local variables before return statements, does it matter?(return 語句之前的局部變量,這有關系嗎?)
                How to convert Integer to int?(如何將整數轉換為整數?)
                How do I create an int array with randomly shuffled numbers in a given range(如何在給定范圍內創建一個隨機打亂數字的 int 數組)
                Inconsistent behavior on java#39;s ==(java的行為不一致==)
                Why is Java able to store 0xff000000 as an int?(為什么 Java 能夠將 0xff000000 存儲為 int?)
                  <i id='0Nk9D'><tr id='0Nk9D'><dt id='0Nk9D'><q id='0Nk9D'><span id='0Nk9D'><b id='0Nk9D'><form id='0Nk9D'><ins id='0Nk9D'></ins><ul id='0Nk9D'></ul><sub id='0Nk9D'></sub></form><legend id='0Nk9D'></legend><bdo id='0Nk9D'><pre id='0Nk9D'><center id='0Nk9D'></center></pre></bdo></b><th id='0Nk9D'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='0Nk9D'><tfoot id='0Nk9D'></tfoot><dl id='0Nk9D'><fieldset id='0Nk9D'></fieldset></dl></div>
                    <tbody id='0Nk9D'></tbody>

                    <tfoot id='0Nk9D'></tfoot>
                    • <small id='0Nk9D'></small><noframes id='0Nk9D'>

                        <legend id='0Nk9D'><style id='0Nk9D'><dir id='0Nk9D'><q id='0Nk9D'></q></dir></style></legend>
                          <bdo id='0Nk9D'></bdo><ul id='0Nk9D'></ul>
                          主站蜘蛛池模板: 国产一区二区黑人欧美xxxx | 欧美一级片在线 | 91精品久久久久久久久久入口 | 在线小视频 | 免费欧美 | 国产女人与拘做受免费视频 | 99热精品在线观看 | 国产一区二区在线免费播放 | 黄色成人免费在线观看 | 日韩在线一区二区三区 | 午夜在线观看视频 | 亚洲 欧美 日韩在线 | 精品视频在线免费观看 | 欧美日韩视频 | 亚洲一区二区在线免费观看 | 超碰在线播 | 亚洲精品在线视频 | 久久新 | 黄在线免费观看 | 亚洲一区二区三区免费 | 真人毛片| 亚洲欧美日韩在线不卡 | 亚洲欧美一区二区三区1000 | 日韩欧美专区 | 成人中文字幕在线 | 亚洲视频欧美视频 | 国产成人精品一区二 | 一区二区三区精品视频 | 亚洲 欧美 另类 日韩 | 成人av免费网站 | ww亚洲ww亚在线观看 | 一级h片 | 欧美国产91 | 男人的天堂久久 | 97色在线观看免费视频 | av黄色在线观看 | 在线看免费| 国产精品久久久久久久久久 | 精品国产欧美在线 | av一级| 中文字幕在线观看视频网站 |