画面幅よりも幅の狭いボトムシートダイアログを表示したいと思います。例えば透明な背景を持つBottomSheetDialog
、Googleからのストック・オプションは、ネクサス9
で音楽を再生し、あなたはこれを達成する方法を知っていますか?
今のところ、シートのコンテンツの幅を縮小したにもかかわらず、背景はまだ画面の幅にあり、白い背景が表示されています。
いくつかのコード:
build.gradle
compile 'com.android.support:design:23.3.0'
MainActivity
@Override
protected void onCreate(Bundle savedInstanceState) {
...
mBottomSheetDialog = new BottomSheetDialog(this);
mBottomSheetDialog.setContentView(R.layout.sheet_test);
mBottomSheetDialog.setOnDismissListener(new DialogInterface.OnDismissListener() {
@Override
public void onDismiss(DialogInterface dialog) {
mBottomSheetDialog = null;
}
});
mBottomSheetDialog.show();
}
sheet_test
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="100dp"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
style="@style/TextAppearance.AppCompat.Body1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:text="Some Text"
android:textColor="@color/colorPrimary" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#ddd" />
<TextView
style="@style/TextAppearance.AppCompat.Body1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="16dp"
android:text="Some Text" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#ddd" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
にこれを追加デザインライブラリのいくつかのコード:) –
どのバージョンを共有してください、あなたは、を使用して?あなたは最新(23.3.0)で試しましたか? – ianhanniballake
私は親アクティビティーを透明にする必要があると思います。 http://stackoverflow.com/questions/2176922/how-to-create-transparent-activity-in-android – Madushan