Skip to content

Commit a286e0d

Browse files
committed
Merge branch 'development' of github.com:happyfoxinc/helpstack-android into development
2 parents 3a0e980 + aca9acd commit a286e0d

File tree

18 files changed

+276
-213
lines changed

18 files changed

+276
-213
lines changed

helpstack/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@
4343
android:name="com.tenmiles.helpstack.activities.ImageAttachmentDisplayActivity">
4444
</activity>
4545
<activity
46-
android:name="com.tenmiles.helpstack.activities.EditAttachmentActivity">
46+
android:name="com.tenmiles.helpstack.activities.EditAttachmentActivity"
47+
android:screenOrientation="portrait">
4748
</activity>
4849

4950
<receiver
420 Bytes
Loading
325 Bytes
Loading
478 Bytes
Loading
649 Bytes
Loading

helpstack/res/drawable/brush_blue.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<shape android:shape="oval" xmlns:android="http://schemas.android.com/apk/res/android" >
2+
<solid android:color="#2196f3" />
3+
</shape>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<shape android:shape="oval" xmlns:android="http://schemas.android.com/apk/res/android" >
2+
<solid android:color="#4caf50" />
3+
</shape>

helpstack/res/drawable/brush_red.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<shape android:shape="oval" xmlns:android="http://schemas.android.com/apk/res/android" >
2+
<solid android:color="#f44336"/>
3+
</shape>

helpstack/res/drawable/paint.xml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
2-
<item>
3-
<shape android:shape="rectangle" >
4-
<stroke
5-
android:width="4dp"
6-
android:color="#FF999999" />
7-
<solid android:color="#00000000" />
8-
</shape>
9-
</item>
10-
</layer-list>
1+
<shape android:shape="oval" xmlns:android="http://schemas.android.com/apk/res/android">
2+
<solid android:color="#111111" />
3+
<size
4+
android:width="2dp"
5+
android:height="2dp"/>
6+
</shape>
7+
Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
2-
<item>
3-
<shape android:shape="rectangle" >
4-
<stroke
5-
android:width="4dp"
6-
android:color="#FF333333" />
7-
8-
<solid android:color="#00000000" />
9-
</shape>
10-
</item>
11-
<item>
12-
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
13-
<stroke
14-
android:width="4dp"
15-
android:color="#FF333333" />
16-
17-
<solid android:color="#00000000" />
18-
</shape>
19-
</item>
20-
</layer-list>
1+
<shape android:shape="oval" xmlns:android="http://schemas.android.com/apk/res/android">
2+
<solid android:color="#555555" />
3+
</shape>

0 commit comments

Comments
 (0)