Android
 Computer >> コンピューター >  >> プログラミング >> Android

Andriodでedittextフィールドの値を取得するにはどうすればよいですか?


この例は、AndroidにファイルされたeditTextの値を取得する方法を示しています。

ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。

ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical"
   android:padding="16dp">
   <EditText
      android:id="@+id/editText"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_above="@id/button"
      android:layout_centerInParent="true"/>
   <Button
      android:id="@+id/button"
      android:text="Get value of "
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_centerInParent="true"/>
   <TextView
      android:id="@+id/textView"
      android:textSize="16sp"
      android:textStyle="bold"
      android:layout_centerInParent="true"
      android:layout_below="@id/button"
      android:layout_marginTop="8dp"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content" />
</RelativeLayout>

ステップ3 −次のコードをsrc / MainActivity.java

に追加します
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
   Button button;
   EditText editText;
   String string;
   TextView textView;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      button = findViewById(R.id.button);
      editText = findViewById(R.id.editText);
      textView = findViewById(R.id.textView);
      button.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            string = editText.getText().toString();
            textView.setText(string);
         }
      });
   }
}

ステップ4 -次のコードをandroidManifest.xmlに追加します

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="https://schemas.android.com/apk/res/android"
   package="app.com.sample">
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:theme="@style/AppTheme">
      <activity android:name=".MainActivity">
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>
</manifest>
アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 android studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します–

Andriodでedittextフィールドの値を取得するにはどうすればよいですか?

Andriodでedittextフィールドの値を取得するにはどうすればよいですか?


  1. Tkinterでエントリウィジェットの値を取得するにはどうすればよいですか?

    エントリウィジェットを作成し、その値を取得したいとします。この場合、 .get()を使用できます 方法。入力オブジェクトを変数にマップします。変数は、入力された値を印刷または表示するためにさらに使用できます。 例 この例では、ラベルウィジェットを介して入力テキストを表示するアプリケーションを作成します。 #Import tkinter library from tkinter import * from tkinter import ttk #Create an instance of tkinter frame or window win= Tk() #Set the geometry o

  2. Redis HSTRLEN –ハッシュに含まれるフィールド値の長さを取得する方法

    このチュートリアルでは、キーに格納されているハッシュ値に含まれるフィールドの値の長さを取得する方法について学習します。このために、Redis HSTRLENを使用します コマンド。 HSTRLENコマンド このコマンドは、指定されたキーに格納されているハッシュ値のフィールドに関連付けられている値の長さ(文字数)を返します。キーが存在しない場合、またはキーは存在するがハッシュ値に指定されたフィールドが含まれていない場合はOが返され、キーは存在するがキーに格納されている値がハッシュデータ型ではない場合はエラーが返されます。 RedisHSTRLENコマンドの構文は次のとおりです。- 構文: