Reputation: 125
When i try to redirect to next activity... I am getting an error message stating as Source Not Found... I am new to android development.
The following code is shows the activity which i need to redirect...
public class Disclaimer extends Activity {
Bundle bunUserInfo = null;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.disclaimer);
//Anyone plz help me.
Upvotes: 0
Views: 576
Reputation: 3925
Add The Disclaimer to AndroidManifest.xml file
<activity android:name=".Disclaimer"
android:theme="@android:style/Theme.NoTitleBar" >
</activity>
Upvotes: 1