new Dialog(this, R.style.iQON_BottomSheet);
bottomSheet.setContentView(bottomSheetLayout);
bottomSheet.setCancelable(true);
bottomSheet.getWindow().setLayout(
LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
bottomSheet.getWindow().setGravity(Gravity.BOTTOM);
bottomSheet.show(); ▪ ࣗલͰ࣮ // ʲXMLʳBottomSheet༻ͷελΠϧΛ࡞Δ
<style name="iQON.BottomSheet" parent="@android:style/Theme.Dialog">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:backgroundDimEnabled">true</item>
<item name="android:windowIsFloating">false</item>
<item name="android:windowAnimationStyle">@style/iQON.BottomSheet.Animation</item>
</style> // ʲXMLʳදࣔ/ඇදࣔͷΞχϝʔγϣϯ
<style name="iQON.BottomSheet.Animation">
<item name=“android:windowEnterAnimation">
@anim/bs_show
</item>
<item name=“android:windowExitAnimation">
@anim/bs_hide
</item>
</style>