summaryrefslogtreecommitdiff
path: root/samples/ApiDemos/src/com/example/android/apis/content/ResourcesLayoutReference.java
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2011-07-01 15:08:18 -0700
committerDianne Hackborn <hackbod@google.com>2011-07-01 15:08:44 -0700
commitd79a09095c77e204a7ada0cf26423db782801a4c (patch)
tree565542e5548053b3af26cc67fcecc8c87bf52147 /samples/ApiDemos/src/com/example/android/apis/content/ResourcesLayoutReference.java
parent46781c155d1ae6d7c44bc387d560af25c4bf3981 (diff)
New API demo showing how to make a resource reference.
Change-Id: I450d70432debc9d7f58a7f6597628dacc0225ddd
Diffstat (limited to 'samples/ApiDemos/src/com/example/android/apis/content/ResourcesLayoutReference.java')
-rw-r--r--samples/ApiDemos/src/com/example/android/apis/content/ResourcesLayoutReference.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/samples/ApiDemos/src/com/example/android/apis/content/ResourcesLayoutReference.java b/samples/ApiDemos/src/com/example/android/apis/content/ResourcesLayoutReference.java
new file mode 100644
index 000000000..0682bcb3d
--- /dev/null
+++ b/samples/ApiDemos/src/com/example/android/apis/content/ResourcesLayoutReference.java
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.example.android.apis.content;
+
+import com.example.android.apis.R;
+
+import android.app.Activity;
+import android.os.Bundle;
+
+public class ResourcesLayoutReference extends Activity {
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+
+ // This layout uses different configurations to adjust
+ // what is shown based on the smallest width that will occur.
+ setContentView(R.layout.resources_layout_reference);
+ }
+}