画廊中的自定义布局问题,Android!

发布于 2024-11-19 11:41:09 字数 608 浏览 3 评论 0原文

这就是我想要的。我想要一个布局的自定义视图库。不过,我希望能够在图库的每个布局元素内的 textViews 上设置 setText。我正在图库视图中成功显示空白布局。

但是,当我尝试从布局中对资源进行 setText 时,我在 setText 函数上收到 NullPointer 异常。它说它找不到我的textView。这是我的画廊自定义适配器中的getView代码。

public View getView(int position, View convertView, ViewGroup parent) {

     convertView = inflator.inflate(R.layout.adapter_layout, null);
     convertView.setLayoutParams(new Gallery.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
     TextView text1 = (TextView) findViewById(R.id.text1);

      //NULL POINTER HERE !!!!
      text1.setText("YOYOYOYOYOYO");
}

Here is what I want. I want to have a gallery of custom views of layouts. However I want to be able to set setText on textViews within each layout element of the gallery. I am displaying the blank layouts successfully in a gallery view.

However, when I try to setText on a resource from the layout I get a NullPointer exception on the setText function. It says it cannot find my textView.. Here is my code for the getView in my custom Adapter for my gallery.

public View getView(int position, View convertView, ViewGroup parent) {

     convertView = inflator.inflate(R.layout.adapter_layout, null);
     convertView.setLayoutParams(new Gallery.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
     TextView text1 = (TextView) findViewById(R.id.text1);

      //NULL POINTER HERE !!!!
      text1.setText("YOYOYOYOYOYO");
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾听心声的旋律 2024-11-26 11:41:09

您正在对 Activity 调用 findViewById(),而不是对充气器返回的视图。尝试

     TextView text1 = (TextView) convertView.findViewById(R.id.text1);

You're calling findViewById() on the activity, not the view returned by the inflator. Try

     TextView text1 = (TextView) convertView.findViewById(R.id.text1);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文