タグ付けされた質問 「android-support-design」


10
BottomNavigationViewは常にアイコンとテキストラベルの両方を表示します
設計サポートライブラリバージョン25のandroid.support.design.widget.BottomNavigationViewを使用しています compile 'com.android.support:design:25.0.0' <android.support.design.widget.BottomNavigationView android:id="@+id/bottomBar" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_gravity="center" app:itemBackground="@color/colorPrimary" app:menu="@menu/bottom_navigation_main" android:forceHasOverlappingRendering="true"/> @ menu / bottom_navigation_mainに3つのアクションしかない場合は、アイコンとテキストラベルの両方が常に表示されます。 4つ以上のアクションがあるときに、アイコンとテキストラベルの両方を常に表示する方法は何ですか。

28
BottomSheetでのユーザーのドラッグを無効にする
でのユーザーのドラッグを無効にしようとしていBottomSheetます。無効にしたい理由は2つあります。1.がListView下にスクロールしないようにしている。2.ユーザーがドラッグを使用して却下したくないが、にボタンがあるBottomSheetView。これは私がやったことです bottomSheetBehavior = BottomSheetBehavior.from(bottomAnc); bottomSheetBehavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() { @Override public void onStateChanged(@NonNull View bottomSheet, int newState) { if (newState == BottomSheetBehavior.STATE_EXPANDED) { //Log.e("BottomSheet", "Expanded"); } else if (newState == BottomSheetBehavior.STATE_COLLAPSED) { //Log.e("BottomSheet", "Collapsed"); } } @Override public void onSlide(@NonNull View bottomSheet, float slideOffset) { // React to dragging events bottomSheet.setOnTouchListener(new View.OnTouchListener() …

14
BottomSheetDialogFragmentの状態を展開に設定します
Android Support Design Library(v23.2.1)BottomSheetDialogFragmentをBottomSheetBehavior#setState(STATE_EXPANDED)使用して、拡張されたフラグメントの状態をどのように設定しますか? https://code.google.com/p/android/issues/detail?id=202396のコメント: 下部のシートは、最初はSTATE_COLLAPSEDに設定されています。拡張する場合は、BottomSheetBehavior#setState(STATE_EXPANDED)を呼び出します。ビューレイアウトの前にメソッドを呼び出すことはできないことに注意してください。 提案の練習は(最初に膨張するビューが必要ですが、私は私がフラグメントにBottomSheetBehaviourを設定しますかどうかはわかりませんBottomSheetDialogFragment)。 View bottomSheet = coordinatorLayout.findViewById(R.id.bottom_sheet); BottomSheetBehavior behavior = BottomSheetBehavior.from(bottomSheet);

7
公式デザインライブラリのFloatingActionButtonを使用したInflateException
FloatingActionButtonGoogleのサポートデザインライブラリの公式を使用してバグが発生しています。 これが私のLogCatです。 android.view.InflateException: Binary XML file line #34: Error inflating class android.support.design.widget.FloatingActionButton at android.view.LayoutInflater.createView(LayoutInflater.java:633) at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:743) at android.view.LayoutInflater.rInflate(LayoutInflater.java:806) at android.view.LayoutInflater.rInflate(LayoutInflater.java:809) at android.view.LayoutInflater.inflate(LayoutInflater.java:504) at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method) at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:655) at android.view.LayoutInflater.inflate(Unknown Source) at android.view.LayoutInflater.inflate(LayoutInflater.java:414) at ---.---.com.---.SubCategoryFragment.onCreateView(SubCategoryFragment.java:47) at android.support.v4.app.Fragment.performCreateView(Fragment.java:1789) at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:955) at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:1138) at android.support.v4.app.BackStackRecord.run(BackStackRecord.java:740) at android.support.v4.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1501) at android.support.v4.app.FragmentManagerImpl$1.run(FragmentManager.java:458) at android.os.Handler.handleCallback(Handler.java:739) at android.os.Handler.dispatchMessage(Handler.java:95) …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.