Prakash
Prakash

Reputation: 125

Source Not Found when starting activity

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

Answers (1)

Basbous
Basbous

Reputation: 3925

Add The Disclaimer to AndroidManifest.xml file

<activity android:name=".Disclaimer"
          android:theme="@android:style/Theme.NoTitleBar" >
</activity>

Upvotes: 1

Related Questions