我想从方法中的 edittext 视图中获取值onClick
,但是在检索EditText
. 这是我的代码:
public class CreateEvent extends Activity{
Button cbutton;
EditText title;
protected void onCreate(Bundle savedInstancesState){
super.onCreate(savedInstacesState);
setContentView(R.layout.create_event_layout);
cbutton = (Button)this.findViewById(R.id.cbutton);
title = (EditText)this.findViewById(R.id.title);
cbutton.setOnClickListener(new Button.OnClickListener()
{
public void onClick(View v){
Log.v("title", title.getText().toString());
});
}
}
我也尝试将标题的启动移入onClick
,仍然没有返回。不知道该怎么办。
这是布局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width = "fill_parent"
android:layout_width = "fill_parent"
android:oriention = "vertical">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/title"
/>
<EditText
android:id="@+id/title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="20sp"
android:hint="@string/title"
/>
</LinearLayout>
我很确定我的布局文件没有问题。