diff options
author | cretin45 <cretin45@gmail.com> | 2015-01-15 16:04:44 -0800 |
---|---|---|
committer | cretin45 <cretin45@gmail.com> | 2015-01-15 16:04:44 -0800 |
commit | 0328b87bf68f6389049991c68caa515f4230f95f (patch) | |
tree | 556b0a23df4bb849eada991b01f4861c651f25e8 /tests/res | |
download | packages_apps_SetupWizard-0328b87bf68f6389049991c68caa515f4230f95f.zip packages_apps_SetupWizard-0328b87bf68f6389049991c68caa515f4230f95f.tar.gz packages_apps_SetupWizard-0328b87bf68f6389049991c68caa515f4230f95f.tar.bz2 |
SetupWizard: Initial commit
Diffstat (limited to 'tests/res')
-rw-r--r-- | tests/res/drawable/icon.png | bin | 0 -> 1980 bytes | |||
-rw-r--r-- | tests/res/layout/cmaccount_test.xml | 35 | ||||
-rw-r--r-- | tests/res/values/strings.xml | 21 |
3 files changed, 56 insertions, 0 deletions
diff --git a/tests/res/drawable/icon.png b/tests/res/drawable/icon.png Binary files differnew file mode 100644 index 0000000..3cf3c4a --- /dev/null +++ b/tests/res/drawable/icon.png diff --git a/tests/res/layout/cmaccount_test.xml b/tests/res/layout/cmaccount_test.xml new file mode 100644 index 0000000..645b8bb --- /dev/null +++ b/tests/res/layout/cmaccount_test.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2013 The CyanogenMod 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. +--> +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_height="match_parent" + android:layout_width="match_parent"> + <LinearLayout android:layout_height="match_parent" + android:layout_width="match_parent" + android:orientation="vertical"> + + <Button android:id="@+id/enable_setup" + android:layout_height="wrap_content" + android:layout_width="match_parent" + android:text="@string/enable_setup"/> + + <Button android:id="@+id/enable_google_setup" + android:layout_height="wrap_content" + android:layout_width="match_parent" + android:text="@string/enable_google_setup"/> + + </LinearLayout> +</ScrollView> diff --git a/tests/res/values/strings.xml b/tests/res/values/strings.xml new file mode 100644 index 0000000..94d85cb --- /dev/null +++ b/tests/res/values/strings.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2013 The CyanogenMod 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. +--> +<resources> + <string name="app_test">CMSetupWizard Test</string> + <string name="enable_setup">Enable Setup Wizard</string> + <string name="enable_google_setup">Enable Google Setup Wizard</string> +</resources> |