«navigationbar» 태그된 질문

10
하단 네비게이션보기에서 선택된 탭의 색상
BottomNavigationView프로젝트에를 추가하고 있으며 선택한 탭에 대해 다른 텍스트 (및 아이콘 색조) 색상을 원합니다 (선택되지 않은 탭 효과를 흐리게 표시하기 위해). android:state_selected="true"색상 선택기 리소스 파일에서 다른 색상을 사용하면 작동하지 않는 것 같습니다. 또한 android:state_focused="true"또는로 추가 항목 항목을 시도했지만 android:state_enabled="true"불행히도 효과가 없습니다. 또한 state_selected기본 (선택하지 않은) 색상에 대해 속성을 false (명시 적으로)로 …

7
Android 롤리팝 변경 탐색 막대 색상
내 응용 프로그램에서 아래쪽 탐색 모음 색상을 변경해야합니다. 많은 게시물을 보았지만 솔루션으로 찾을 수 없습니다. appCompat 라이브러리를 사용하고 있습니다. v21 / styles.xml <style name="AppTheme" parent="Theme.AppCompat.Light"> <item name="android:windowBackground">@drawable/bgpreview</item> <item name="android:colorPrimary">@color/MyColor</item> <item name="android:colorPrimaryDark">@color/MyColor</item> <item name="android:windowContentOverlay">@null</item> <item name="android:textColorPrimary">@color/MyColor</item> <item name="colorAccent">@color/MyColor</item> <!-- darker variant for the status bar and contextual app bars --> <item …

10
프로그래밍 방식으로 탐색 모음의 UIBarButtonItem?
나는이 솔루션을 잠시 동안 찾고 있었지만 아무것도 얻지 못했습니다. 예를 들어 하나의 솔루션은 self.navigationItem.setRightBarButtonItem(UIBarButtonItem(barButtonSystemItem: .Stop, target: self, action: nil), animated: true) 이 코드는 "중지"이미지가있는 버튼을 추가합니다. 이와 같이 "검색,"새로 고침 "등의 다른 솔루션이 있습니다. 그러나 원하는 이미지로 프로그래밍 방식으로 단추를 추가하려면 어떻게해야합니까?

18
iOS 변경 탐색 막대 제목 글꼴 및 색상
그래서 탐색 모음 제목 글꼴을 변경해야하는이 코드가 있지만 NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:[UIFont fontWithName:_dataManager.optionsSettings.fontString size:14], NSFontAttributeName, [UIColor whiteColor], NSForegroundColorAttributeName, nil]; [[UINavigationBar appearance] setTitleTextAttributes:attributes]; 이 코드로 뒤로 버튼 글꼴을 변경하면 잘 작동합니다. //set backbutton font NSDictionary *normalAttributes = [NSDictionary dictionaryWithObjectsAndKeys: [UIFont fontWithName:_dataManager.optionsSettings.fontString size:15], NSFontAttributeName, nil]; [[UIBarButtonItem appearance] setTitleTextAttributes:normalAttributes forState:UIControlStateNormal];
101 ios  fonts  ios7  navigationbar 

11
Android 활동에서 탐색 모음을 영구적으로 숨기는 방법은 무엇입니까?
내 활동에서 내비게이션 바를 영구적으로 숨기고 싶습니다 (전체 시스템 UI가 아님). 이제이 코드를 사용하고 있습니다. getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION); 막대를 숨기지 만 사용자가 화면을 터치하면 다시 표시됩니다. 활동할 때까지 영구적으로 숨길 수있는 방법이 있습니까 onStop()?

7
Xcode 11.4. 스토리 보드에서 탐색의 제목 색상이 검은 색으로 바 gone
최근에 Xcode를 11.4로 업데이트했습니다. 기기에서 앱을 실행하면 스토리 보드에서 설정했을 때 모든 내비게이션 항목의 제목이 완전히 검은 색으로 바뀌는 것을 알았습니다. 코드를 변경할 수 없으며 다음 코드 줄이 더 이상 작동하지 않습니다. self.navigationController?.navigationBar.titleTextAttributes = [.foregroundColor: UIColor.white] iOS 13을 사용하는 경우에만 작동합니다. @available(iOS 13.0, *) private func setupNavigationBar() { let app …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.