próbuję uczynić ten prosty Dialog półprzezroczyste:Jak zrobić ten prosty fragment dialogowe półprzezroczyste
class TestDialog extends SherlockDialogFragment
{
public TestDialog()
{
super();
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceStateBundle)
{
AlertDialog.Builder builder1 = new AlertDialog.Builder(getActivity());
// Get the layout inflater
LayoutInflater inflater1 = getActivity().getLayoutInflater();
// Inflate and set the layout for the dialog
// Pass null as the parent view because its going in the dialog layout
builder1.setView(inflater1.inflate(R.layout.dlg_test, null))
// Add action buttons
.setPositiveButton("Ok", new DialogInterface.OnClickListener()
{
@Override
public void onClick(DialogInterface dialog, int id)
{
// sign in the user ...
}
})
.setNegativeButton("Cancel", new DialogInterface.OnClickListener()
{
@Override
public void onClick(DialogInterface dialog, int id)
{
}
});
return builder1.create();
}
}
Layout jest następujący:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginBottom="4dp"
android:hint="User name" />
</LinearLayout>
Próbowałem wszystkiego, od użycia przezroczystego .png jako tła do rysowania układu liniowego, do ustawienia pola alfa na 0.5, do użycia jako drawowalnego koloru równego 0. Nie jestem w stanie uczynić tego okna półprzezroczystym. Nie wiem nawet, czy to możliwe. To, co chciałbym stworzyć, to okno dialogowe, takie jak panel na następującym obrazku: . Dzięki. Uwaga1: wymagana min. SDK to wersja 8, cel jest najnowszy (w rzeczywistości, v17).
myślę, że może to zależeć od Wersja SDK. W 1.6 dialogach domyślnie są półprzezroczyste, ale spróbuj 'AlertDialog.Builder (kontekst kontekstowy, int motywu)' gdzie motyw to 'android.R.style.Theme_Dialog. – techiServices
Czy próbowałeś użyć czegoś w stylu 'android: background =" # 4000 "' w XML? (# 4000 to przestrzeń kolorów ARGB_4444). – techiServices
Próbowałem obu, ale to nie zadziałało. –