mirror of
				https://github.com/lacerta-doc/Lacerta.git
				synced 2025-11-03 16:40:47 +00:00 
			
		
		
		
	リファクタ
This commit is contained in:
		
							parent
							
								
									ab5a8bfa87
								
							
						
					
					
						commit
						8449c8ea87
					
				@ -82,15 +82,12 @@ public class HomeTopFragment extends Fragment {
 | 
				
			|||||||
        Toolbar toolbar = view.findViewById(R.id.home_toolbar);
 | 
					        Toolbar toolbar = view.findViewById(R.id.home_toolbar);
 | 
				
			||||||
        toolbarSetup(toolbar, false, "ホーム");
 | 
					        toolbarSetup(toolbar, false, "ホーム");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        this.listItemAdapter = new ListItemAdapter(new DocumentSelectListener() {
 | 
					        this.listItemAdapter = new ListItemAdapter((documentId, documentName) -> {
 | 
				
			||||||
            @Override
 | 
					 | 
				
			||||||
            public void onDocumentSelect(String documentId, String documentName) {
 | 
					 | 
				
			||||||
            Intent intent = new Intent(getContext(), ViewerMainActivity.class);
 | 
					            Intent intent = new Intent(getContext(), ViewerMainActivity.class);
 | 
				
			||||||
            Log.d("HomeTopFragment", "onDocumentSelect: " + documentId + " " + documentName);
 | 
					            Log.d("HomeTopFragment", "onDocumentSelect: " + documentId + " " + documentName);
 | 
				
			||||||
            intent.putExtra("documentId", documentId);
 | 
					            intent.putExtra("documentId", documentId);
 | 
				
			||||||
            intent.putExtra("documentName", documentName);
 | 
					            intent.putExtra("documentName", documentName);
 | 
				
			||||||
            startActivity(intent);
 | 
					            startActivity(intent);
 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        });
 | 
					        });
 | 
				
			||||||
        recyclerView.setAdapter(listItemAdapter);
 | 
					        recyclerView.setAdapter(listItemAdapter);
 | 
				
			||||||
        recyclerView.setLayoutManager(new LinearLayoutManager(getContext()));
 | 
					        recyclerView.setLayoutManager(new LinearLayoutManager(getContext()));
 | 
				
			||||||
@ -135,8 +132,6 @@ public class HomeTopFragment extends Fragment {
 | 
				
			|||||||
            if (showBackButton) {
 | 
					            if (showBackButton) {
 | 
				
			||||||
                toolbar.setNavigationIcon(one.nem.lacerta.shared.ui.R.drawable.arrow_back_24px);
 | 
					                toolbar.setNavigationIcon(one.nem.lacerta.shared.ui.R.drawable.arrow_back_24px);
 | 
				
			||||||
                toolbar.setNavigationOnClickListener(v -> {
 | 
					                toolbar.setNavigationOnClickListener(v -> {
 | 
				
			||||||
                    //this.libraryItemPage = lacertaLibrary.getLibraryPage(this.libraryItemPage.getParentId(), 10).join();
 | 
					 | 
				
			||||||
                    // Back
 | 
					 | 
				
			||||||
                    Navigation.findNavController(requireView()).popBackStack();
 | 
					                    Navigation.findNavController(requireView()).popBackStack();
 | 
				
			||||||
                });
 | 
					                });
 | 
				
			||||||
            } else {
 | 
					            } else {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user