如何使用BottomSheets显示共享对话框

时间:2015-08-26 10:22:04

标签: android android-dialogfragment android-sharing

我想在我的应用中通过对话框显示一个分享,其中Intent.ACTION_SEND显示enter image description here

我试过了this library。它工作正常,但它使用showDialog()来显示不推荐使用的共享对话框。我需要这个共享窗口的确切样式。有没有办法实施?或者我如何使用DialogFragment实现bottomSheets?

1 个答案:

答案 0 :(得分:0)

我有同样的问题,但你给了我一个主意。看看这个https://github.com/soarcn/BottomSheet/blob/master/library/src/main/res/values/styles.xml

随心所欲,放入你的styles.xml。

在对话框片段

中比这更像smth

@Override public Dialog onCreateDialog(Bundle savedInstanceState) { return new Dialog(getActivity(), R.style.BottomSheet_Dialog); }