Toast mesjda gif gösterme
13.03.2017 - 04:06
Toast mesjda veya benzer olan MaterialDialogta nasıl gif oynatabilirim?
2
Görüntülenme
0 Beğeni
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
}
}