findViewById
为EditText
Java代码:
public class MainActivity extends Activity {
private EditText editText;
/**
* Called when the activity is first created.
*/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
editText = (EditText) findViewById(R.id.etext);
if (editText == null) {
Log.v("editText", "booohooo");
} else {
Log.v("editText", "Success");
}
final Button button = (Button) findViewById(R.id.gobutton);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
if (editText != null) {
Log.v("editText", "is not NULL");
} else {
Log.v("editText", "is NULL :(");
}
// Perform action on click
if (editText != null) {
editText.getText();
} else {
Log.v("editText", "is NULL");
}
Log.v("url", editText.getText().toString().trim());
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(editText.getText().toString().trim()));
startActivity(browserIntent);
}
});
}
}
Xml代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<TextView
android_id="@+id/websiteurlheading"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Enter web site URL" />
<EditText
android_id="@+id/etext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/websiteurlheading" />
<Button
android:id="@+id/gobutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enter" />
</LinearLayout>
感谢任何帮助。
答案 0 :(得分:10)
确保将setContentView(R.layout.main);
设置为正确的布局。如果您创建了一个新的(包含上面的xml代码),那么使用它来设置内容视图 - setContentView(R.layout.your_xml_filename);
答案 1 :(得分:1)
更改视图中的行
android_id="@+id/websiteurlheading"
android_id="@+id/etext"
并更改View id就像这样
android:id="@+id/websiteurlheading"
android:id="@+id/etext"
例如
<TextView android:id="@+id/websiteurlheading"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Enter web site URL"
/>
<EditText android:id="@+id/etext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/websiteurlheading"
/>
答案 2 :(得分:0)
几秒钟后我就遇到了这个问题,我搜索了一些Stackoverflow帖子。我自己找到了解决方案。
请确保您没有在onCreate方法中调用editText.getText().toString();
。因为它只返回预加载的值因此在这种情况下editext将始终返回null。
答案 3 :(得分:0)
如果用于setContentView函数的布局与EditBox放置布局不同,则会发生这种情况。