activity_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/LinearLayout1" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Enter your name" android:textAppearance="?android:attr/textAppearanceLarge" /> <EditText android:id="@+id/nameeditText" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" android:hint="Enter name only" android:inputType="textPersonName" > </EditText> <Button android:id="@+id/showbutton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginTop="20dp" android:text="Show entered name" /> <TextView android:id="@+id/nametextView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceLarge" /> </LinearLayout>
MainActivity.java
package com.blogspot.kantapp.workingwithedittext; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; public class MainActivity extends Activity { EditText editName; TextView displayName; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); editName = (EditText)findViewById(R.id.nameeditText); displayName = (TextView)findViewById(R.id.nametextView); Button showNameBtn = (Button)findViewById(R.id.showbutton); showNameBtn.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) { // TODO Auto-generated method stub String name = editName.getText().toString(); displayName.setText("entered name :"+name); } }); } }
No comments:
Post a Comment