gpt4 book ai didi

android - 在 ViewPager 中使用具有相同布局的不同 fragment

转载 作者:行者123 更新时间:2023-11-29 01:46:40 25 4
gpt4 key购买 nike

在我的应用程序中,我有一个带有页面的 ViewPager,每个页面都显示一个列表。当我开始时,我直接将 ListFragement 添加到 ViewPager。为了更改每个页面的布局(例如在每个列表下方添加一个 ViewText),我后来创建了一个包含此 listFragement 的自己的布局文件的 fragment ,我将其添加到 ViewPager

这是这个布局(每个页面的外观)

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tab_history"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<FrameLayout
android:id="@+id/tab_fragment"
android:layout_width="match_parent"
android:layout_height="0sp"
android:layout_weight="1" >
</FrameLayout>

<LinearLayout
android:id="@+id/message_canvas"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/lightgreen"
android:orientation="horizontal"
android:paddingBottom="6sp"
android:paddingTop="6sp"
android:visibility="visible" >

<TextView
android:id="@+id/message"
android:layout_width="0sp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:contentDescription="@string/emptyString"
android:gravity="center_horizontal"
android:text="@string/emptyString"
android:textAlignment="center"
android:textColor="@color/green"
android:textStyle="bold" />
</LinearLayout>

这是 ViewPager 的布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<LinearLayout
android:id="@+id/main_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:orientation="horizontal" >
</LinearLayout>

<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/white" >
</android.support.v4.view.ViewPager>

这就是我将每个 ListFragement 添加到其父 Fragement 的方式(具有相同的布局)(在本例中为联系人列表)

public class FragmentTabContacts extends FragmentTab{

@Override
protected Fragment getFragment() {
return new ListFragmentContactlist();
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
this.fragment = getFragment();
View view = inflater.inflate(R.layout.tab_fragement, null);
messageCanvas = (ViewGroup)view.findViewById(R.id.message_canvas);
FragmentManager fragmentManager = getFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
fragmentTransaction.add(R.id.tab_fragment, this.fragment);
fragmentTransaction.commit();
return view;
}
}

这是 ViewPager 的适配器

public class FragmentAdapter extends FragmentPagerAdapter {
/**
* list of {@link NinjaListFragment} used for all tabs
*/
private List<ITabContainer> fragments;

public FragmentAdapter(FragmentManager fm, List<ITabContainer> fragments) {
super(fm);
this.fragments = fragments;
}

@Override
public int getCount() {
return this.fragments.size();
}

@Override
public Fragment getItem(int position) {
return (Fragment) fragments.get(position);
}

@Override
public int getItemPosition(Object object) {
return fragments.indexOf(object);
}

}

这是我在 ViewPager 中编写的方法,用于为其设置新的 Fragements 以及相应的选项卡

/**
* adds the {@link ViewGroup} representing the tab to the {@value #mapTabs} for generating the tabs
* @param inflater the {@link LayoutInflater} used to inflate the tab
* @param tabs the {@link ViewGroup} containing the inflated tabs.
* @param tabContainer the fragment with the interface {@link ITabContainer} used as content for the tab added to {@link #fragments}
* @param imageId the id of the image to be shown on the tab
* @param onClickListener the {@link View.OnClickListener} to receive the tab clicks
*/
private void addTab(LayoutInflater inflater, ViewGroup tabs, ITabContainer tabContainer, int imageId, View.OnClickListener onClickListener) {
inflater.inflate(R.layout.main_tab, tabs);
int index = tabs.getChildCount() - 1;
ImageView ivTab = (ImageView) tabs.getChildAt(index);
ivTab.setTag(String.valueOf(index));
ivTab.setImageResource(imageId);
ivTab.setOnClickListener(onClickListener);
mapTabs.put(index, ivTab);
fragments.add(tabContainer);
}

这就是我在 ViewPager 的 onCreate 方法中调用此方法的方式

       addTab(inflater, vgTabs, new FragmentTabContacts(), R.drawable.ic_tab_contacts, onClickListener);
addTab(inflater, vgTabs, new FragmentTabHistory(), R.drawable.ic_tab_history, onClickListener);
addTab(inflater, vgTabs, new ListFragmentGroups(), R.drawable.ic_tab_groups, onClickListener);
addTab(inflater, vgTabs, new FragmentTabFavorits(), R.drawable.ic_tab_favorits, onClickListener);

因为对于我添加 ListFragement 的 Framelayout,具有相同布局的所有 fragements 自然包含相同的 id (android:id="@+id/tab_fragment"),看来 ViewPager 有一个问题来识别每个他们。我只以这种方式完成了前 2 页(第 4 个选项卡包含另一个 ViewPager,这有效),但结果是第一页现在显示第二页的内容,而第二页是空的。

我希望每个页面都有一个单独的 TextView,因为我想在每个页面中存储不同的文本,并且我不想复制相同的布局(只是具有不同的 ID)4 次(如果没有其他解决方案)它)。而且我不想将该 TextView 放在主 PageView 布局中并在每次选项卡切换后刷新内容。

如何为每个页面的每个 ListFragement 重复使用相同的布局?

最佳答案

与此同时,我找到了一个简单的解决方法。我为所有 4 个页面创建了 4 种不同的布局( fragment 有 4 个不同的 ID)并在每个页面中包含相同的冗余部分

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tab_page"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<fragment
android:id="@+id/list_history"
android:name="at.happyninja.addressbook.fragments.ListFragmentHistory"
android:layout_width="match_parent"
android:layout_height="0sp"
android:layout_weight="1" />

<include layout="@layout/tab_message" />
<include layout="@layout/tab_keyboardview" />

关于android - 在 ViewPager 中使用具有相同布局的不同 fragment ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21017434/

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