Oğuzhan
Oğuzhan
Tekirdağ
08/08/2014 tarihinden beri üye
675 GY Puanı
8K GY Sırası

Kişisel Sayfaları

İlgi Alanları

4 Rozet
3 Sertifika
9 Soru Sordu
6 Cevap Verdi
0 Blog Yazısı
0 Etiket Takibi

Hakkında

İş Tecrubesi

Kullanıcıya ait İş tecrübesi bilgisi bulunmamaktadır.

Eğitim Geçmişi

Namık Kemal Üniversitesi
| Aralık 2020 - Aralık 2020

Sertifikalar & Başarılar

GY Sertifikaları (3)
101 Sertifikası
Veriliş Tarihi: Ağustos 2014
Android 201 Sertifikası
Veriliş Tarihi: Ağustos 2014
Android 101 Sertifikası
Veriliş Tarihi: Ağustos 2014
Diğer Sertifikaları (0)
Kullanıcıya ait sertifika bulunmamaktadır.
Test Sonuçları (0)

Kullanıcıya ait test sonucu bulunmamaktadır.

Dil Becerileri

Son Forum Aktiviteleri

15
Tümünü Gör

Android google playe yüklediğim uygulama hemen kaldırılıyor.

Uygulamayı yüklüyorum. 1 saate yüklenecek uyarısı veriyor. 1 saat içinde aşağıda ki hatadan dolayı uygulama askıya alınıyor.

REASON FOR REMOVAL: Violation of the intellectual property and impersonation or deceptive behavior provisions of the Content Policy. Please refer to the IP infringement and impersonation policy help article for more information.

This particular app has been disabled as a policy strike. If your developer account is still in good standing, you may revise and upload a policy compliant version of this application as a new package name.This notification also serves as notice for remaining, unsuspended violations in your catalog, and you may avoid further app suspensions by immediately unpublishing any apps in violation of (but not limited to) the above policy. Once you have resolved any existing violations, you may republish the app(s) at will. Before publishing applications, please ensure your apps’ compliance with the Developer Distribution Agreement and Content Policy.All violations are tracked. Serious or repeated violations of any nature will result in the termination of your developer account, and investigation and possible termination of related Google accounts. If your account is terminated, payments will cease and Google may recover the proceeds of any past sales and the cost of any associated fees (such as chargebacks and payment transaction fees) from you.If you feel we have made this determination in error, you can visit the Google Play Help Center article for additional information regarding this removal.The Google Play Team

 

Tam olarak sorunu anlayamadım. Uygulamamın ismine yada uygulamamdaki resimlere mi kızıyor acaba ? 3. deneme sonunda hesabı kapattı. Şimdi tekrar yeni hesap alacağım fakat hatamı tam olarak anlayamadım. Uygulamayı yüklesem yine kapatacaklar..Sizce resimlerden dolayı hak ihlali mi işledim.

Resimleri iconfinder diye bir siteden alıyorum fakat resimler ücretsiz...

yardımcı olursanız sevinirim...

WebView embed videoları çalıştırma

Merhabalar elimde bir kod var . Bu kod vk.comdan aldığım url leri çalıştırken youtube,mail.ru,odnoklassniki.ru gibi siteleri çalıştırmıyor. Bu sorunu nasıl çözebilirim. (youtube api sayesinde çözdüm.)

import android.app.Activity;
import android.graphics.Bitmap;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.webkit.WebChromeClient;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.FrameLayout;

public class MyActivity extends Activity {
    private WebView webView;
   // private FrameLayout customViewContainer;
    private WebChromeClient.CustomViewCallback customViewCallback;
    private View mCustomView;
    private myWebChromeClient mWebChromeClient;
    private myWebViewClient mWebViewClient;

    /**
     * Called when the activity is first created.
     */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
       // customViewContainer = (FrameLayout) findViewById(R.id.customViewContainer);
        webView = (WebView) findViewById(R.id.webView);

        mWebViewClient = new myWebViewClient();
        webView.setWebViewClient(mWebViewClient);

        mWebChromeClient = new myWebChromeClient();
        webView.setWebChromeClient(mWebChromeClient);
        webView.getSettings().setJavaScriptEnabled(true);
        webView.getSettings().setAppCacheEnabled(true);
        webView.getSettings().setBuiltInZoomControls(true);
        webView.getSettings().setSaveFormData(true);
        webView.loadUrl("http://my.mail.ru/mail/dizist2/video/_myvideo/433.html");
    }

    public boolean inCustomView() {
        return (mCustomView != null);
    }

    public void hideCustomView() {
        mWebChromeClient.onHideCustomView();
    }

    @Override
    protected void onPause() {
        super.onPause();    //To change body of overridden methods use File | Settings | File Templates.
        webView.onPause();
    }

    @Override
    protected void onResume() {
        super.onResume();    //To change body of overridden methods use File | Settings | File Templates.
        webView.onResume();
    }

    @Override
    protected void onStop() {
        super.onStop();    //To change body of overridden methods use File | Settings | File Templates.
        if (inCustomView()) {
            hideCustomView();
        }
    }

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        if (keyCode == KeyEvent.KEYCODE_BACK) {

            if (inCustomView()) {
                hideCustomView();
                return true;
            }

            if ((mCustomView == null) && webView.canGoBack()) {
                webView.goBack();
                return true;
            }
        }
        return super.onKeyDown(keyCode, event);
    }

    class myWebChromeClient extends WebChromeClient {
        private Bitmap mDefaultVideoPoster;
        private View mVideoProgressView;

        @Override
        public void onShowCustomView(View view, int requestedOrientation, CustomViewCallback callback) {
           onShowCustomView(view, callback);    //To change body of overridden methods use File | Settings | File Templates.
        }

        @Override
        public void onShowCustomView(View view,CustomViewCallback callback) {

            // if a view already exists then immediately terminate the new one
            if (mCustomView != null) {
                callback.onCustomViewHidden();
                return;
            }
            mCustomView = view;
            webView.setVisibility(View.GONE);
            //customViewContainer.setVisibility(View.VISIBLE);
            //customViewContainer.addView(view);
            customViewCallback = callback;
        }

       

        @Override
        public void onHideCustomView() {
            super.onHideCustomView();    //To change body of overridden methods use File | Settings | File Templates.
            if (mCustomView == null)
                return;

            webView.setVisibility(View.VISIBLE);
          //  customViewContainer.setVisibility(View.GONE);

            // Hide the custom view.
            mCustomView.setVisibility(View.GONE);

            // Remove the custom view from its container.
            //customViewContainer.removeView(mCustomView);
            customViewCallback.onCustomViewHidden();

            mCustomView = null;
        }
    }

    class myWebViewClient extends WebViewClient {
        @Override
        public boolean shouldOverrideUrlLoading(WebView view, String url) {
            return super.shouldOverrideUrlLoading(view, url);    //To change body of overridden methods use File | Settings | File Templates.
        }
    }

}

 

 

urlden video almak

Merhabalar;

youtube videolarını youtubenin sağlamıs oldugu bır api sayesinde hd kalitede açabiliyorum.

Fakat başka sitelerin videolarını çekemiyorum.Tüm sitelerdeki videoları çalıştırabileceğim kod yada api var mı acaba ?

Yada embed olarak aldığım videoyu nasıl çalıştırabilirim...

 

9 yıl 4 ay önce yanıtladın

Android için yazdığım Web servis nasıl hosta Yüklenir?

Selam arkadaşlar;

Ben bir hostinge sahibim. Hostingde httpdocs klasörüne web sitemi yükledim.Şimdi aynı hostinge bir web servis kodu eklemek istiyorum.

Ama hangi klasöre kodu atmam gerekir. Yada nasıl yapabilirim. Web servis sayesinde vt aldığım bilgileri android uygulamama yolluyorum.Web servisi asp.net ile geliştirdim. Şu an localde sorun yok çalısıyor ama hostinge atamadım . bilgi verirseniz sevinirim...

9 yıl 5 ay önce yanıtladın

webservisn gelen dataset sorunu

Selam ;

Yapmış olduğum web servisten dataset döndürüyorum ama datasettiki verilere android uygulamamda erişemiyorum.Birçok örneğe baktım ama hep hata aldım.Sadece string değeri dönünce sorun yaşamıyorum. Datasette aşağıdaki gibi kod geliyor bana. İçinde istediğim veri  bulunmakta ama ona erişemiyorum.

Ne yapmam lazım acaba ?

anyType{
schema=anyType{
element=anyType{
complexType=anyType{
choice=anyType{
element=anyType{
complexType=anyType{
sequence=anyType{
element=anyType{}; element=anyType{}; element=anyType{}; element=anyType{};
 }; }; }; }; }; }; }; 
diffgram=anyType{NewDataSet=anyType{
Table=anyType{Id=1; Adi=Deneme;  }; }; }; }

 

9 yıl 6 ay önce yanıtladın

Uygulamam askıya alındı

25 Kasım 2014 tarihinde cevaplandı

Ayrıca bu logoları nasıl tespit edip kapatabiliyorlar... bende de logodan kaynaklı kapama oldu galiba...iconfinder da lisanslı olan bu resimler free . ama benım uygulamamı kapatıyorlar.Ama emin olamıyrm logolardan dolayı olup olmadıgından yardımcı olursanız sevınırım...

Uygulamam askıya alındı

25 Kasım 2014 tarihinde cevaplandı

Uygulamayı yüklüyorum. 1 saate yüklenecek uyarısı veriyor. 1 saat içinde aşağıda ki hatadan dolayı uygulama askıya alınıyor.

REASON FOR REMOVAL: Violation of the intellectual property and impersonation or deceptive behavior provisions of the Content Policy. Please refer to the IP infringement and impersonation policy help article for more information.

This particular app has been disabled as a policy strike. If your developer account is still in good standing, you may revise and upload a policy compliant version of this application as a new package name.This notification also serves as notice for remaining, unsuspended violations in your catalog, and you may avoid further app suspensions by immediately unpublishing any apps in violation of (but not limited to) the above policy. Once you have resolved any existing violations, you may republish the app(s) at will. Before publishing applications, please ensure your apps’ compliance with the Developer Distribution Agreement and Content Policy.All violations are tracked. Serious or repeated violations of any nature will result in the termination of your developer account, and investigation and possible termination of related Google accounts. If your account is terminated, payments will cease and Google may recover the proceeds of any past sales and the cost of any associated fees (such as chargebacks and payment transaction fees) from you.If you feel we have made this determination in error, you can visit the Google Play Help Center article for additional information regarding this removal.The Google Play Team

 

Tam olarak sorunu anlayamadım. Uygulamamın ismine yada uygulamamdaki resimlere mi kızıyor acaba ? 3. deneme sonunda hesabı kapattı. Şimdi tekrar yeni hesap alacağım fakat hatamı tam olarak anlayamadım. Uygulamayı yüklesem yine kapatacaklar..Sizce resimlerden dolayı hak ihlali mi işledim.

Resimleri iconfinder diye bir siteden alıyorum fakat resimler ücretsiz...

Size gelen mailde benim aynı sorun gibi duruyor acaba siz çözebildinizmi sorunu?.

Android google play uyari

25 Kasım 2014 tarihinde cevaplandı

Uygulamayı yüklüyorum. 1 saate yüklenecek uyarısı veriyor. 1 saat içinde aşağıda ki hatadan dolayı uygulama askıya alınıyor.

REASON FOR REMOVAL: Violation of the intellectual property and impersonation or deceptive behavior provisions of the Content Policy. Please refer to the IP infringement and impersonation policy help article for more information.

This particular app has been disabled as a policy strike. If your developer account is still in good standing, you may revise and upload a policy compliant version of this application as a new package name.This notification also serves as notice for remaining, unsuspended violations in your catalog, and you may avoid further app suspensions by immediately unpublishing any apps in violation of (but not limited to) the above policy. Once you have resolved any existing violations, you may republish the app(s) at will. Before publishing applications, please ensure your apps’ compliance with the Developer Distribution Agreement and Content Policy.All violations are tracked. Serious or repeated violations of any nature will result in the termination of your developer account, and investigation and possible termination of related Google accounts. If your account is terminated, payments will cease and Google may recover the proceeds of any past sales and the cost of any associated fees (such as chargebacks and payment transaction fees) from you.If you feel we have made this determination in error, you can visit the Google Play Help Center article for additional information regarding this removal.The Google Play Team

 

Tam olarak sorunu anlayamadım. Uygulamamın ismine yada uygulamamdaki resimlere mi kızıyor acaba ? 3. deneme sonunda hesabı kapattı. Şimdi tekrar yeni hesap alacağım fakat hatamı tam olarak anlayamadım. Uygulamayı yüklesem yine kapatacaklar..Sizce resimlerden dolayı hak ihlali mi işledim.

Resimleri iconfinder diye bir siteden alıyorum fakat resimler ücretsiz...

yardımcı olursanız sevinirim...

Urlden Resim Alırken Yükleniyor ifadesi

12 Kasım 2014 tarihinde cevaplandı

Merhabalar ... Ben kodu uyguladım fakat söyle bir olay olıyor..

Örneğin 10 tane resim var ekranınımda.Bunlara default bir resim setledim.Sonra sırayla urlden resimleri getiriyor.Daha sonra ekranı aşagıya kaydırıp yukarı cıkaraınca üstte getirdiği resimler kayboluyor default resim görünüyor.SOnra tekrar urlden resimleri getiriyor...Aynı kodu kullandım acaba neden böyle oluyor...Yardım ederseniz sevinirim..

TabHost'da Swipe ile tab değişimi

06 Eylül 2014 tarihinde cevaplandı

Merhabalar vermiş olduğunuz linki inceledim. Kodları çalıştırdığımda benm bilgisayarımda  tablarla ugulama adı aynı satırda gözüküyor. Halbuki örnekte tablar alt satıra cıkıyor. Bu sorunu nasıl çözebılırım acaba ?