gpt4 book ai didi

Android findViewWithTag 返回空

转载 作者:搜寻专家 更新时间:2023-11-01 08:03:03 25 4
gpt4 key购买 nike

我正在使用 PagerAdapter 并想使用 findViewWithTag 方法,但它总是返回 null。

在 instantiateItem 中,我像这样实例化我的页面 View

public Object instantiateItem(View view, int position) {
View pageView = getPage(position);
((ViewPager) view).addView(pageView);
return pageView;
}

我在 getPage 方法中这样做:

 LinearLayout pageView = (LinearLayout)mInflater.inflate(R.layout.pageritem_news,null,false);

在 for 循环中,我试图通过标签获取 pageView 内的 View ,但它总是返回 null,有人知道吗?

也许问题可能是由 pageritem_news.xml 引起的,因为我正在使用 include 将 View 包含到布局中并在 <include /> 中定义 android:tag|在 xml 中?

更新pageritem_news.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false"
android:orientation="vertical" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:baselineAligned="false"
android:weightSum="3" >

<include
android:id="@+id/newspage_item_row_0_left"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:tag="0"
layout="@layout/listitem_news"
android:visibility="invisible" />

<include
android:id="@+id/newspage_item_row_0_middle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:tag="5"
layout="@layout/listitem_news"
android:visibility="invisible" />

<include
android:id="@+id/newspage_item_row_0_right"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:tag="10"
layout="@layout/listitem_news"
android:visibility="invisible" />
</LinearLayout>

<View
android:layout_width="match_parent"
android:layout_height="@dimen/list_divider_height"
android:background="@drawable/horizontal_divider" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:baselineAligned="false"
android:weightSum="3" >

<include
android:id="@+id/newspage_item_row_1_left"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:tag="1"
layout="@layout/listitem_news"
android:visibility="invisible" />

<include
android:id="@+id/newspage_item_row_1_middle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:tag="6"
layout="@layout/listitem_news"
android:visibility="invisible" />

<include
android:id="@+id/newspage_item_row_1_right"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:tag="11"
layout="@layout/listitem_news"
android:visibility="invisible" />
</LinearLayout>

<View
android:layout_width="match_parent"
android:layout_height="@dimen/list_divider_height"
android:background="@drawable/horizontal_divider" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:baselineAligned="false"
android:weightSum="3" >

<include
android:id="@+id/newspage_item_row_2_left"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:tag="2"
layout="@layout/listitem_news"
android:visibility="invisible" />

<include
android:id="@+id/newspage_item_row_2_middle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:tag="7"
layout="@layout/listitem_news"
android:visibility="invisible" />

<include
android:id="@+id/newspage_item_row_2_right"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:tag="12"
layout="@layout/listitem_news"
android:visibility="invisible" />
</LinearLayout>

<View
android:layout_width="match_parent"
android:layout_height="@dimen/list_divider_height"
android:background="@drawable/horizontal_divider" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:baselineAligned="false"
android:weightSum="3" >

<include
android:id="@+id/newspage_item_row_3_left"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:tag="3"
layout="@layout/listitem_news"
android:visibility="invisible" />

<include
android:id="@+id/newspage_item_row_3_middle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:tag="8"
layout="@layout/listitem_news"
android:visibility="invisible" />

<include
android:id="@+id/newspage_item_row_3_right"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:tag="13"
layout="@layout/listitem_news"
android:visibility="invisible" />
</LinearLayout>

<View
android:layout_width="match_parent"
android:layout_height="@dimen/list_divider_height"
android:background="@drawable/horizontal_divider" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:baselineAligned="false"
android:weightSum="3" >

<include
android:id="@+id/newspage_item_row_4_left"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
layout="@layout/listitem_news"
android:tag="4"
android:visibility="invisible" />

<include
android:id="@+id/newspage_item_row_4_middle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
layout="@layout/listitem_news"
android:tag="9"
android:visibility="invisible" />

<include
android:id="@+id/newspage_item_row_4_right"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
layout="@layout/listitem_news"
android:tag="14"
android:visibility="invisible" />
</LinearLayout>

</LinearLayout>

PagerAdapter的相关代码部分:

@Override
public Object instantiateItem(View view, int position) {
View pageView = getPage(position);
((ViewPager) view).addView(pageView);
return pageView;
}


private View getPage(int position) {
LinearLayout pageView = (LinearLayout)mInflater.inflate(R.layout.pageritem_news,null ,false);

int index=0;
View viewToBuild = null;
while (index < mMovers.size()) {
viewToBuild = pageView.findViewWithTag(String.valueOf(index));
System.out.println("View to build: " + viewToBuild);
if (viewToBuild != null) {
buildNewsView(viewToBuild, mNews.get(index));
}
index++;
}

return pageView;
}

最佳答案

根据 the documentation , 你只能覆盖 layout_*使用 <include /> 时的属性(本质上,任何会进入相应 LayoutParams 对象的内容)。

此功能有一个增强请求 here .

我建议找到一种方法来完成您尝试使用 ID 所做的事情。例如,您可以有一个 TypedArray您可以迭代的 ID。您可以在每个配置的基础上更改此数组(这样它就不会在您的代码中,并且您可以享受在 XML 中定义标签的所有好处)。

关于Android findViewWithTag 返回空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18314853/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com