Soru & Cevap

Toast mesjda gif gösterme ...

13.03.2017 - 04:06


Toast mesjda veya benzer olan MaterialDialogta nasıl gif oynatabilirim?

1 Görüntülenme

1 Cevap

Sitedeki sorulara cevap verebilmek için giriş yapın ya da üye olun.

picture-15873-1477252697.png
muhammetcagatay
14.03.2017 - 09:25
 AlertDialog.Builder builder = new AlertDialog.Builder(Fruits.this);
            GIFWebView view = new GIFWebView(this, "file:///android_asset/apple.gif");
            setContentView(view);
            builder.create().show();

 

 

bu da sınıfın

public class GIFWebView extends WebView {

public GIFWebView(Context context, String path) {
    super(context);
    loadUrl(path);
    // TODO Auto-generated constructor stub
}


}