-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a rust rating trait (up to 21 severity ratings)
Changed timestamp to ISO 8601 Updated counter trait layout (bigger + button) Stores last entry the user was on and automatically moves to it Added option to disable the automatic file sharing Added option to disable navigation if no data collected Updated tutorial Modified trait sample file Started work on a datagrid viewer (work in progress)
- Loading branch information
trife
committed
May 7, 2015
1 parent
cf1cd3c
commit ddf1ac9
Showing
28 changed files
with
1,387 additions
and
261 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
0 | ||
5 | ||
10 | ||
15 | ||
20 | ||
25 | ||
30 | ||
35 | ||
40 | ||
45 | ||
50 | ||
55 | ||
60 | ||
65 | ||
70 | ||
75 | ||
80 | ||
85 | ||
90 | ||
95 | ||
100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
trait,format,defaultValue,minimum,maximum,details,categories,isVisible,realPosition | ||
height,numeric,,,,cM,,TRUE,1 | ||
disease,categorical,,,,Color,Red/Orange/Yellow/Green/Blue/Purple/White/Black/Brown/Cyan/Magenta/Gray,TRUE,2 | ||
color,categorical,,,,Color,Red/Orange/Yellow/Green/Blue/Purple/White/Black/Brown/Cyan/Magenta/Gray,TRUE,2 | ||
lodging,percent,,0,100,,,TRUE,3 | ||
flowering,date,,,,,,TRUE,4 | ||
keep/trash,boolean,FALSE,,,,,TRUE,5 | ||
insect damage,boolean,FALSE,,,,,TRUE,5 | ||
notes,text,,,,,,TRUE,6 | ||
picture,photo,,,,,,TRUE,7 | ||
plants,numeric,,,,,,TRUE,8 | ||
class,categorical,,,,,HRW/HWW/SRW/SWW,TRUE,9 | ||
flowered,percent,,0,100,,,TRUE,10 | ||
heading,date,,,,,,TRUE,11 | ||
insect damage,boolean,,,,,,TRUE,12 | ||
audio,audio,,,,,,TRUE,13 | ||
plants,counter,,,,,,TRUE,8 | ||
rust score,rust rating,,,,,,TRUE,9 | ||
audio,audio,,,,,,TRUE,10 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape= "rectangle" > | ||
<solid android:color="#fff"/> | ||
<stroke android:width="1dp" android:color="#000"/> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content"> | ||
|
||
<ScrollView | ||
android:id="@+id/layout" | ||
android:layout_height="500dp" | ||
android:scrollbars="horizontal|vertical" | ||
android:layout_width="match_parent" | ||
android:layout_marginTop="5dip" | ||
android:scrollbarStyle="outsideInset" | ||
android:fillViewport="true"> | ||
<HorizontalScrollView | ||
android:id="@+id/horizontalView" | ||
android:layout_height="wrap_content" | ||
android:scrollbars="horizontal|vertical" | ||
android:layout_width="wrap_content" | ||
android:layout_marginTop="5dip"> | ||
<TableLayout | ||
android:id="@+id/tableLayout1" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:padding="10dp" | ||
android:stretchColumns="*"></TableLayout> | ||
</HorizontalScrollView> | ||
</ScrollView> | ||
|
||
<LinearLayout | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="center_horizontal" | ||
android:orientation="horizontal" | ||
android:paddingTop="10dp"> | ||
|
||
<Button | ||
android:id="@+id/closeBtn" | ||
android:layout_width="wrap_content" | ||
android:layout_height="60dp" | ||
android:layout_gravity="center_horizontal" | ||
android:background="@android:drawable/btn_default" | ||
android:minWidth="150dp" | ||
android:text="@string/close" | ||
android:textColor="#000000" | ||
android:textSize="30dp" | ||
android:textStyle="bold" /> | ||
</LinearLayout> | ||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.