我有一个我想用来配置小部件的活动,但我似乎无法让findViewById()
工作。它会为所有元素返回null
。
这是我的布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:name="@+id/testTextView"
android:text="refresh time (seconds)"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText
android:name="@+id/testEditText"
android:text="10"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="number" />
<Button
android:name="@+id/testButton"
android:text="Button text"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
这是我的活动onCreate方法:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_configure_widget);
Button button = (Button) findViewById(R.id.testButton);
EditText editText = (EditText) findViewById(R.id.testEditText);
TextView textView = (TextView ) findViewById(R.id.testTextView);
button.setText("Button test");
editText.setText("editText test");
textView.setText("textView test");
}
每个元素(button,editText,textView)都是null
,当我尝试设置文本时它会抛出NullPointerException
。如果我注释掉那些setText行,则显示正确的布局,如xml中所定义。
虽然我可以使用View v = findViewById(android.R.id.content);
来获取根元素并从中获取子元素。
像这样:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_configure_widget);
View v = findViewById(android.R.id.content); //this is a FrameLayout, I don't know if the container is always a framelayout
ViewGroup firstChild = (ViewGroup)((ViewGroup)v).getChildAt(0); //this gets my linearlayout
TextView textView = (TextView)(firstChild.getChildAt(0));
EditText editText = (EditText)(firstChild.getChildAt(1));
Button button = (Button)(firstChild.getChildAt(2));
button.setText("Button test");
editText.setText("editText test");
textView.setText("textView test");
}
使用此布局显示每个元素的文本设置为“按钮测试”“editText测试”和“textView测试”按预期方式。
我已经清理并重建了这个项目。并且在调试时我已经检查过资源名称实际上正在解析为id号。
任何人都可以解释发生了什么吗?我的findViewById()
为什么不为我工作?
答案 0 :(得分:2)
您的观点没有任何ID。使用android:id
而不是android:name
来声明它们。
答案 1 :(得分:1)
您需要为要在代码中访问的视图声明属性android:id
。因此,您需要将此属性添加到xml文件中的视图中。
将layout.xml文件更改为:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/testTextView"
android:text="refresh time (seconds)"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/testEditText"
android:text="10"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="number" />
<Button
android:id="@+id/testButton"
android:text="Button text"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>