-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Prasannan N <[email protected]>
- Loading branch information
Prasannan N
committed
Aug 5, 2015
1 parent
8303e9c
commit bb6b0a4
Showing
53 changed files
with
423 additions
and
232 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
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
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 |
---|---|---|
|
@@ -4,6 +4,13 @@ Documentation : http://developer.freshdesk.com/mobihelp | |
Support : http://support.freshdesk.com | ||
Email : [email protected] | ||
|
||
v1.5 | ||
--------------------- | ||
Ability to display solutions filtered by tags | ||
Ability to preset subject and prefill description | ||
Ability to mark solutions as helpful or not | ||
Performance Improvements | ||
|
||
v1.4 | ||
--------------------- | ||
- Images can now be attached as part of Initial Feedback | ||
|
Binary file not shown.
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,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<translate | ||
android:duration="500" | ||
android:fillAfter="true" | ||
android:fromYDelta="0%p" | ||
android:interpolator="@android:anim/linear_interpolator" | ||
android:toYDelta="100%p" /> | ||
|
||
</set> |
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,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<translate | ||
android:duration="750" | ||
android:fillBefore="true" | ||
android:fromYDelta="100%p" | ||
android:toYDelta="0%p" /> | ||
|
||
</set> |
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 |
---|---|---|
|
@@ -34,4 +34,4 @@ | |
</shape> | ||
</item> | ||
|
||
</selector> | ||
</selector> |
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 |
---|---|---|
|
@@ -38,4 +38,4 @@ | |
<solid android:color="#FF6666" /> | ||
</shape> | ||
</item> | ||
</selector> | ||
</selector> |
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
|
||
<corners android:radius="30dp" /> | ||
|
||
</shape> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:id="@+id/mobihelp_votingview" | ||
android:layout_alignParentBottom="true" | ||
android:orientation="vertical" | ||
android:visibility="gone" | ||
tools:context=".activity.SolutionArticleActivity" > | ||
|
||
<View | ||
android:id="@+id/mobihelp_voting_view_divider" | ||
android:layout_width="match_parent" | ||
android:layout_height="@dimen/mobihelp_article_thin_border" | ||
android:background="@color/mobihelp_divider_dark" /> | ||
|
||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="horizontal" > | ||
|
||
<TextView | ||
android:id="@+id/mobihelp_votingprompt" | ||
android:layout_width="0dp" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="0.7" | ||
android:ellipsize="end" | ||
android:maxLines="2" | ||
android:padding="4dp" | ||
android:text="@string/mobihelp_solutions_vote_prompt" | ||
android:textAppearance="@android:style/TextAppearance.Medium" /> | ||
|
||
<Button | ||
android:id="@+id/mobihelp_upvote" | ||
android:layout_width="0dp" | ||
android:layout_height="wrap_content" | ||
android:layout_marginBottom="4dp" | ||
android:layout_marginLeft="20dp" | ||
android:layout_marginRight="8dp" | ||
android:layout_weight="0.15" | ||
android:text="@string/mobihelp_label_yes" /> | ||
|
||
<Button | ||
android:id="@+id/mobihelp_downvote" | ||
android:layout_width="0dp" | ||
android:layout_height="wrap_content" | ||
android:layout_marginBottom="4dp" | ||
android:layout_marginLeft="8dp" | ||
android:layout_marginRight="20dp" | ||
android:layout_weight="0.15" | ||
android:text="@string/mobihelp_label_no" /> | ||
</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
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
28 changes: 28 additions & 0 deletions
28
MobihelpSDK/res/layout/mobihelp_activity_solution_article.xml
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,28 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:id="@+id/mobihelp_solution_article_root_layout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" > | ||
<TextView | ||
android:id="@+id/mobihelp_solution_article_title" | ||
android:layout_width="match_parent" | ||
android:maxLines="3" | ||
android:padding="12dp" | ||
android:textAppearance="@android:style/TextAppearance.Medium" | ||
android:layout_height="wrap_content"/> | ||
|
||
<View | ||
android:id="@+id/mobihelp_solution_article_title_divider" | ||
android:layout_width="match_parent" | ||
android:layout_height="@dimen/mobihelp_article_thick_border" | ||
android:layout_below="@id/mobihelp_solution_article_title" | ||
android:background="@color/mobihelp_divider_light" /> | ||
|
||
<include layout="@layout/mobihelp_voting_frame" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentLeft="true" | ||
android:layout_alignParentRight="true" | ||
android:layout_alignParentBottom="true"/> | ||
|
||
</RelativeLayout> |
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 |
---|---|---|
|
@@ -111,4 +111,4 @@ | |
android:visibility="gone" /> | ||
</RelativeLayout> | ||
|
||
</RelativeLayout> | ||
</RelativeLayout> |
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 |
---|---|---|
|
@@ -17,4 +17,4 @@ | |
android:textAppearance="?android:attr/textAppearanceMedium" | ||
android:visibility="gone" /> | ||
|
||
</merge> | ||
</merge> |
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 |
---|---|---|
|
@@ -40,4 +40,4 @@ | |
android:text="@string/mobihelp_label_yes" /> | ||
</LinearLayout> | ||
|
||
</LinearLayout> | ||
</LinearLayout> |
Oops, something went wrong.