aboutsummaryrefslogtreecommitdiffstats
path: root/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/overdraw/src/test/pkg/ThirdActivity.java.txt
blob: 3d4da955f1965648f69946827aee4af163939934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package test.pkg;

import android.app.Activity;
import android.os.Bundle;

public class ThirdActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setTheme(R.style.MyTheme_Third);
        setContentView(R.layout.third);
    }
}