Member 13258586 Ответов: 0

Как решить . Inflateexception в Android Studio, когда я, используя "просмотр страницы", на вкладке показывает


я использую одно действие, которое содержит две вкладки для скольжения
Привет я получаю эту ошибку если я использую свое приложение в nexus 4 но оно отлично работает в nexus 7 Почему это происходит


public View onCreateView(LayoutInflater inflater, @ Nullable ViewGroup container, Bundle savedInstanceState) {
View layoutView = inflater. inflate(R. layout. tab2, container, false);

вернуться layoutView ;
}

Помоги мне

Что я уже пробовал:

public class TabTwo extends Fragment {
    GridView gridViewBookKeeping;

    @Nullable
    @Override

    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {
        View layoutView = inflater.inflate(R.layout.tab2, container, false);

        List<AssignedModule> assignedModules = GlobalDefault.objectList.getAssignedModules();
        List<UserForm> userForms =assignedModules.get(1).getUser_forms();

        String[] bookKeepingName = new String[userForms.size()];
        int[] recordCount = new int[userForms.size()];
        int[] completeCount = new int[userForms.size()];
        int[] incompleteCount= new int[userForms.size()];


        for (int j = 0; j< userForms.size(); j++)
        {
            bookKeepingName[j] = userForms.get(j).getForm_name();
            recordCount[j] = userForms.get(j).getRecord_count();
            completeCount[j]=userForms.get(j).getMandatory_record_count();
            incompleteCount[j]=recordCount[j]-completeCount[j];

        }
        gridViewBookKeeping = (GridView)layoutView.findViewById(R.id.grid_view_book_keeping);
        GridAdapterModuleBookKeeping gridAdapterModuleBookKeeping = new GridAdapterModuleBookKeeping(getActivity(),bookKeepingName,recordCount,completeCount,incompleteCount);
        gridViewBookKeeping.setAdapter(gridAdapterModuleBookKeeping);
        gridViewBookKeeping.setVisibility(View.VISIBLE);


    return layoutView ;
    }
}

0 Ответов