我正在尝试获取对ImageView对象的引用,无论出于何种原因,它都会一直返回为null。
XML:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="6dip">
<ImageView android:id="@+id/application_icon" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/label" android:text="Application Name" />
<CheckBox android:id="@+id/check" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="right" />
</LinearLayout>
爪哇:
ImageView img = (ImageView) v.findViewById(R.id.application_icon);
我不觉得我做错了什么我的img var总是回来为null。这张照片出了什么问题?
答案 0 :(得分:1)
当您引用imageView时,请确保使用正确的布局,即setContentView(R.layout.yourIntendedXmlLayout);
该xml应包含您的imageView。然后你可以参考你的imageView。
答案 1 :(得分:1)
周六的答案是正确的,即您需要一个合适的布局,但setContentView()
不是引用视图的唯一方法。您可以使用LayoutInflater
来扩充View
的父级布局(即使它未显示),并使用新增加的布局来引用视图。
public class MyActivity extends Activity {
Context context;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
context = this;
// the rest of yout code
private void someCallback() {
LayoutInflater inflater = (LayoutInflater) context.getSystemService
(Context.LAYOUT_INFLATER_SERVICE);
LinearLayout ll = (LinearLayout) inflater.inflate(R.layout.iconLayout, null);
ImageView img = (ImageView) ll.findViewById(R.id.application_icon);
// you can do whatever you need with the img (get the Bitmap, maybe?)
您对xml文件所需的唯一更改是向父布局添加ID,因此您可以将其与LayoutInflater
一起使用:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="iconLayout"
<!-- all the rest of your layout -->
<ImageView android:id="@+id/application_icon" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<!-- all the rest of your layout -->
</LinearLayout>
答案 2 :(得分:-1)
使用
ImageView img = (ImageView)findViewById(R.id.application_icon)
;