├── res ├── values │ └── strings.xml └── layout │ ├── length_picker.xml │ └── main.xml ├── project.properties ├── AndroidManifest.xml ├── proguard-project.txt └── src └── com └── sqisland └── android └── length_picker ├── MainActivity.java └── LengthPicker.java /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Length Picker 4 | 5 | + 6 | - 7 | 8 | Width 9 | Height 10 | Area 11 | Compute 12 | %1$d sq in 13 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-15 15 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 11 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /res/layout/length_picker.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 |