CopyPastor

Detecting plagiarism made easy.

Score: 0.8373132576352615; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2015-05-20
by Narendra Singh

Original Post

Original - Posted on 2013-12-13
by user543



            
Present in both answers; Present only in the new answer; Present only in the old answer;

Just mention the transparent theme to the starting activity in the AndroidManifest.xml file.
<activity android:name="first Activity Name" android:theme="@android:style/Theme.Translucent.NoTitleBar" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>
Just mention the transparent theme to the starting activity in the AndroidManifest.xml file.
Like:

<activity android:name="first Activity Name" android:theme="@android:style/Theme.Translucent.NoTitleBar" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>
and extend that screen with `Activity` class in place of `AppCompatActivity`.
like :
public class SplashScreenActivity extends Activity{
----YOUR CODE GOES HERE---- }

        
Present in both answers; Present only in the new answer; Present only in the old answer;