Ошибка Android: нет вкладки для Null Tag
Мне нужна фиксированная область (около 20%) сверху, а затем 3 вкладки под ней. XML это
mylist.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:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.2"
android:orientation="vertical" >
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.05"
android:visibility="invisible" />
<TextView
android:id="@+id/list_name"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.3"
android:textColor="@color/loclistitem_text"
android:textStyle="bold" />
<TextView
android:id="@+id/list_spec"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.3" />
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.1"
android:visibility="invisible" />
<TextView
android:id="@+id/list_user"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.2" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.8"
android:orientation="horizontal" >
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.05"
android:visibility="invisible" />
<FrameLayout
android:id="@+id/list_realtabcontent"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.95" />
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.05"
android:visibility="invisible" />
</LinearLayout>
<android.support.v4.app.FragmentTabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#CCF8FB" >
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dip"
android:layout_height="0dip"
android:layout_weight="0" />
</android.support.v4.app.FragmentTabHost>
</LinearLayout>
MyListFragment.java
public class MyListFragment extends Fragment {
private FragmentTabHost mTabHost;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
View rootView = inflater.inflate(R.layout.mylist, container,
false);
TextView name = (TextView) rootView.findViewById(R.id.list_name);
TextView spec = (TextView) rootView.findViewById(R.id.loc_spec);
TextView users = (TextView) rootView.findViewById(R.id.list_user);
name.setText(AppSession.getInstance().getData().getName());
mTabHost = new FragmentTabHost(getActivity());
mTabHost.setup(getActivity(), getChildFragmentManager(),
R.id.list_realtabcontent);
Bundle arg1 = new Bundle();
arg1.putInt("Tab1", 1);
mTabHost.addTab(
mTabHost.newTabSpec("Tab1").setIndicator("Tab1",
getResources().getDrawable(R.drawable.tab_left)),
Tab1.class, arg1);
Bundle arg2 = new Bundle();
arg2.putInt("Tab2", 2);
mTabHost.addTab(
mTabHost.newTabSpec("Tab2").setIndicator("Tab2",
getResources().getDrawable(R.drawable.tab_middle)),
Tab2.class, arg2);
Bundle arg3 = new Bundle();
arg3.putInt("Tab3", 3);
mTabHost.addTab(
mTabHost.newTabSpec("Tab3").setIndicator("Tab3",
getResources().getDrawable(R.drawable.tab_rigth)),
Tab3Fragment.class, arg2);
return rootView;
}
@Override
public void onDetach() {
super.onDetach();
try {
Field childFragmentManager = Fragment.class
.getDeclaredField("mChildFragmentManager");
childFragmentManager.setAccessible(true);
childFragmentManager.set(this, null);
} catch (NoSuchFieldException e) {
throw new RuntimeException(e);
} catch (IllegalAccessException e) {
throw new RuntimeException(e);
}
}
}
Я получаю сообщение "Нет вкладки, известной по тегу NULL" на android.support.v4.app.FragmentTabHost.doTabChanged.
Ошибка устраняется, если я изменяю return rootView
в return mTabHost
, Но тогда фиксированная область сверху не отображается. Это только отображение 3 вкладок в верхней части экрана. Я попытался использовать Activity, чтобы установить этот конкретный экран, и он работал нормально (как фиксированная область вверху, так и вкладки отображаются правильно), но мне это нужно, используя фрагменты, так как я использую Navigation Drawer, так что это должен быть фрагмент. Пожалуйста посоветуй.
Модифицированный XML
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#CCF8FB" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:orientation="vertical" >
<TextView
android:id="@+id/loc_playlist_locname"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.2" />
<FrameLayout
android:id="@+id/playlist_realtabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.1" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dip"
android:layout_height="0dip"
android:layout_weight="0" />
</LinearLayout>
</android.support.v4.app.FragmentTabHost>
3 ответа
Я внес несколько изменений в ваш код: - При реализации используйте FragmentTabHost, указанный в макете - Используйте Framelayout, указанный в элементе FragmentTabHost в макете в методе установки TabHost. Кажется, работает, проверьте код ниже:
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:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.2"
android:orientation="vertical" >
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.05"
android:visibility="invisible" />
<TextView
android:id="@+id/list_name"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.3"
android:textStyle="bold" />
<TextView
android:id="@+id/list_spec"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.3" />
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.1"
android:visibility="invisible" />
<TextView
android:id="@+id/list_user"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.2" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.8"
android:orientation="horizontal" >
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.05"
android:visibility="invisible" />
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.05"
android:visibility="invisible" />
</LinearLayout>
<android.support.v4.app.FragmentTabHost
android:id="@+id/tabhost"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#CCF8FB" >
<FrameLayout
android:id="@+id/list_realtabcontent"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.95" />
</android.support.v4.app.FragmentTabHost>
</LinearLayout>
Класс фрагмента:
public class MyListFragment extends Fragment {
private FragmentTabHost mTabHost;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
View rootView = inflater.inflate(R.layout.activity_main, container,
false);
TextView name = (TextView) rootView.findViewById(R.id.list_name);
TextView spec = (TextView) rootView.findViewById(R.id.list_spec);
TextView users = (TextView) rootView.findViewById(R.id.list_user);
mTabHost = (FragmentTabHost)rootView.findViewById(R.id.tabhost);
mTabHost.setup(getActivity(), getChildFragmentManager(),
R.id.list_realtabcontent);
Bundle arg1 = new Bundle();
arg1.putInt("Tab1", 1);
mTabHost.addTab(
mTabHost.newTabSpec("Tab1").setIndicator("Tab1",
getResources().getDrawable(R.drawable.tab_chat_unselected)),
TabFragment.class, arg1);
Bundle arg2 = new Bundle();
arg2.putInt("Tab2", 2);
mTabHost.addTab(
mTabHost.newTabSpec("Tab2").setIndicator("Tab2",
getResources().getDrawable(R.drawable.tab_chat_unselected)),
TabFragment.class, arg2);
Bundle arg3 = new Bundle();
arg3.putInt("Tab3", 3);
mTabHost.addTab(
mTabHost.newTabSpec("Tab3").setIndicator("Tab3",
getResources().getDrawable(R.drawable.tab_chat_unselected)),
TabFragment.class, arg3);
return rootView;
}
Попробуйте таким образом, надеюсь, это поможет вам решить вашу проблему.
<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:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.20">
</LinearLayout>
<android.support.v4.app.FragmentTabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.80"
android:background="#CCF8FB" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:orientation="vertical" >
<TextView
android:id="@+id/loc_playlist_locname"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.2" />
<FrameLayout
android:id="@+id/playlist_realtabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.1" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dip"
android:layout_height="0dip"
android:layout_weight="0" />
</LinearLayout>
</android.support.v4.app.FragmentTabHost>
</LinearLayout>
Вы можете использовать эту библиотеку. Наличие вкладок с навигационными ящиками не предоставляется напрямую. Если вы хотите иметь вкладки во фрагменте, как в Google Play. Я советую вам использовать эту библиотеку.
Просто создайте навигационный блок точно так же, как мы его создаем, и правильно его интегрируем. Это очень просто.
Решение, предоставленное @Haresh, может работать. Но если это не применимо, ссылка, которую я предоставил, определенно будет работать. Я использовал эту библиотеку в моем проекте. Ссылка1 и ссылка2.
Надеюсь, поможет