Remove use of old theme name.
Change-Id: Iebc7a81738122fbfb94f22649e07eabb39dc4afb
This commit is contained in:
@@ -2056,9 +2056,19 @@
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name=".graphics.HiddenActivity"
|
||||
android:label="Graphics/OpenGL ES/Hidden Activity"
|
||||
android:theme="@android:style/Theme.Translucent"
|
||||
android:configChanges="orientation|keyboardHidden">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.SAMPLE_CODE" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name=".graphics.TriangleActivity"
|
||||
android:label="Graphics/OpenGL ES/Textured Triangle"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:theme="@android:style/Theme.Holo.Dialog"
|
||||
android:configChanges="orientation|keyboardHidden">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
@@ -18,8 +18,9 @@ package com.example.android.apis.app;
|
||||
|
||||
// Need the following import to get access to the app resources, since this
|
||||
// class is in a sub-package.
|
||||
import com.example.android.apis.R;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
import android.view.Window;
|
||||
@@ -28,9 +29,6 @@ import android.widget.Button;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
|
||||
import com.example.android.apis.R;
|
||||
import com.example.android.apis.app.ForegroundService.Controller;
|
||||
|
||||
/**
|
||||
* <h3>Dialog Activity</h3>
|
||||
*
|
||||
@@ -50,10 +48,12 @@ public class DialogActivity extends Activity {
|
||||
|
||||
requestWindowFeature(Window.FEATURE_LEFT_ICON);
|
||||
|
||||
|
||||
// See assets/res/any/layout/dialog_activity.xml for this
|
||||
// view layout definition, which is being set here as
|
||||
// the content of our screen.
|
||||
setContentView(R.layout.dialog_activity);
|
||||
getWindow().setTitle("This is just a test");
|
||||
|
||||
getWindow().setFeatureDrawableResource(Window.FEATURE_LEFT_ICON,
|
||||
android.R.drawable.ic_dialog_alert);
|
||||
|
||||
@@ -26,8 +26,10 @@ public class TriangleActivity extends Activity {
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
mGLView = new GLSurfaceView(this);
|
||||
mGLView.setEGLConfigChooser(false);
|
||||
mGLView.setRenderer(new StaticTriangleRenderer(this));
|
||||
/*ImageView imageView = new ImageView(this);
|
||||
imageView.setImageResource(R.raw.robot);
|
||||
setContentView(imageView);*/
|
||||
setContentView(mGLView);
|
||||
}
|
||||
|
||||
|
||||
@@ -18,8 +18,6 @@
|
||||
package="com.example.android.hcgallery" android:versionCode="1"
|
||||
android:versionName="1.0">
|
||||
|
||||
<uses-sdk android:minSdkVersion="Honeycomb" />
|
||||
|
||||
<uses-permission android:name="android.permission.CAMERA" />
|
||||
|
||||
<application android:label="@string/app_name"
|
||||
|
||||
@@ -52,7 +52,7 @@
|
||||
</activity>
|
||||
|
||||
<activity android:name="NoteEditor"
|
||||
android:theme="@android:style/Theme.Light.Holo"
|
||||
android:theme="@android:style/Theme.Holo.Light"
|
||||
android:screenOrientation="sensor"
|
||||
android:configChanges="keyboardHidden|orientation"
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user