Questions tagged «material-components»

16
BottomSheetDialogFragment的圆角
我有一个自定义的BttomSheetDialogFragment,我想在底部视图的顶部有圆角 这是我的自定义类,它使我想要从底部显示的布局膨胀 View mView; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { mView = inflater.inflate(R.layout.charge_layout, container, false); initChargeLayoutViews(); return mView; } 而且我也有这个xml资源文件作为背景: <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" > <corners android:topRightRadius="35dp" android:topLeftRadius="35dp" /> <solid android:color="@color/white"/> <padding android:top="10dp" android:bottom="10dp" android:right="16dp" android:left="16dp"/> 但是问题是,当我将此资源文件设置为布局的根元素的背景时,拐角仍未圆化 而且我不能使用下面的代码: this.getDialog().getWindow().setBackgroundDrawableResource(R.drawable.charge_layout_background); 因为它覆盖了BottomSheetDialog的默认背景,并且在我的Bottom View上方没有任何半透明的灰色

5
Web的材质组件与Angular材质2 [关闭]
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow的主题。 1年前关闭。 改善这个问题 最近,MDL(材料设计精简版)项目的后继产品作为Web的Material Components发布。其目标之一是“与其他JS框架和库无缝集成”。 另一个项目Angular Material2提供了专门用于Angular(v2 +)的材料设计组件。 这两个项目都在创建基于材质设计的UI组件。而且,它们具有准备就绪/ in-active-development的相似组件集,以及即将上市的相同组件集(在此处和此处列出)。 有人可以帮我了解两个项目之间的重叠之处,我应该为新项目选择哪一个? 从根本上讲,我确实知道Angular Material2将与Angular项目更加无缝和紧密地集成,而Web的Material Components将为要使用的多个JS框架提供挂钩。但是我看不到重叠的原因,以及哪一个会有更大的动力(阅读更多内容)。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.