<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>android studio splash screen - hknsoft</title>
	<atom:link href="https://hknsoft.com/etiket/android-studio-splash-screen/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Android, Yazılım, Script</description>
	<lastBuildDate>Sun, 08 Nov 2020 18:41:51 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://hknsoft.com/wp-content/uploads/2020/05/cropped-icon-hknsoft-150x150.png</url>
	<title>android studio splash screen - hknsoft</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Android Studio Splash Screen Gösterim Süresi Ayarlamak</title>
		<link>https://hknsoft.com/android-studio-splash-screen-gosterim-suresi-ayarlamak/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 11 Sep 2020 14:09:12 +0000</pubDate>
				<category><![CDATA[Android Studio]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[android studio]]></category>
		<category><![CDATA[android studio splash screen]]></category>
		<category><![CDATA[android studio splash screen bekleme süresi ayarlamak]]></category>
		<category><![CDATA[android studio splash screen gösterim süresi ayarlamak]]></category>
		<category><![CDATA[android studio splash screen sleep time]]></category>
		<guid isPermaLink="false">https://hknsoft.com/?p=719</guid>

					<description><![CDATA[<p>Android Studio ile Splash Screen gösterim süresi ayarlamak için Türkçe kaynak bulmak oldukça zor. O yüzden bu kodu paylaşıyorum. Aşağıdaki kod ile Splash Screen&#8217;lerin belli <a class="mh-excerpt-more" href="https://hknsoft.com/android-studio-splash-screen-gosterim-suresi-ayarlamak/" title="Android Studio Splash Screen Gösterim Süresi Ayarlamak">[...]</a></p>
<p>The post <a href="https://hknsoft.com/android-studio-splash-screen-gosterim-suresi-ayarlamak/">Android Studio Splash Screen Gösterim Süresi Ayarlamak</a> appeared first on <a href="https://hknsoft.com">hknsoft</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="has-black-color has-text-color wp-block-paragraph"><a href="https://accounts.google.com/o/oauth2/v2/auth?client_id=721724668570-nbkv1cfusk7kk4eni4pjvepaus73b13t.apps.googleusercontent.com&amp;redirect_uri=https%3A%2F%2Fdeveloper.android.com%2Foauth2callback&amp;scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fgoogledevelopers+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdeveloperprofiles+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdeveloperprofiles.award+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile+openid&amp;access_type=online&amp;response_type=code&amp;state=%7B%22csrf_token%22%3A+%2283c5a356c87b2e7e3417be8cb5e4ddb4e80b8efc3037df4a197cfe835c01d9d5%22%2C+%22return_url%22%3A+%22https%3A%2F%2Fdeveloper.android.com%2Fstudio%22%7D&amp;prompt=none&amp;auto_signin=True" target="_blank" rel="noreferrer noopener nofollow"><strong>Android Studio</strong></a> ile <a href="https://hknsoft.com/android-studio-splash-screen-gosterim-suresi-ayarlamak/"><strong>Splash Screen</strong></a> gösterim süresi ayarlamak için Türkçe kaynak bulmak oldukça zor. O yüzden bu kodu paylaşıyorum. Aşağıdaki kod ile Splash Screen&#8217;lerin belli bir süre <strong>beklemesini sağlayabilirsiniz.</strong></p>



<p class="wp-block-paragraph"><strong>Açıklama satırlarını okuyarak</strong> kodu kendi işinize yarayacak hale getirebilirsiniz. (Yeşil ile yazılanlar)</p>



<div class="wp-block-urvanov-syntax-highlighter-code-block"><pre class="urvanov-syntax-highlighter-plain-tag">Thread timerThread = new Thread(){
            public void run(){
                try{
                    sleep(3000); //istediğiniz değerleri yazabilirsiniz (3000 = 3 saniye)
                }catch(InterruptedException e){
                    e.printStackTrace();
                }finally{
                    //buraya 3 saniye bittikten sonra ne gerçekleşmesini istiyorsanız onu yazın
                    //örnek olarak diğer activity'e geçmesini söyledim
                    Intent intent = new Intent(SplashActivity.this, MainActivity.class);
                    startActivity(intent);
                    finish();
                }
            }
        };
        timerThread.start();</pre></div>



<p class="wp-block-paragraph"><strong>Not:</strong> Bu kodu <strong>onCreate</strong> içine yazmalısınız.</p>
<p>The post <a href="https://hknsoft.com/android-studio-splash-screen-gosterim-suresi-ayarlamak/">Android Studio Splash Screen Gösterim Süresi Ayarlamak</a> appeared first on <a href="https://hknsoft.com">hknsoft</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
