-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
exceptions in my posts to investigation (json deserializer)
- Loading branch information
Michael Eilers Smith
committed
Dec 26, 2013
1 parent
51844f1
commit 72bfcc8
Showing
34 changed files
with
883 additions
and
829 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,58 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ViewFlipper xmlns:android="http://schemas.android.com/apk/res/android" | ||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:id="@+id/vf" | ||
android:id="@+id/root_layout" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" > | ||
android:layout_height="wrap_content" > | ||
|
||
<ProgressBar | ||
android:id="@+id/loading" | ||
style="@android:style/Widget.ProgressBar.Small" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="center" /> | ||
|
||
<RelativeLayout | ||
<ListView | ||
android:id="@+id/replies_lv" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:divider="@null" | ||
android:dividerHeight="0dp" | ||
android:listSelector="@android:color/transparent" | ||
android:paddingBottom="50dp" > | ||
</ListView> | ||
|
||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" > | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentBottom="true" | ||
android:background="#e6d7d4d3" | ||
android:orientation="vertical" > | ||
|
||
<ListView | ||
android:id="@+id/replies_lv" | ||
<View | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:divider="@null" | ||
android:listSelector="@android:color/transparent" | ||
android:dividerHeight="0dp" | ||
android:paddingBottom="50dp" > | ||
</ListView> | ||
android:layout_height="2px" | ||
android:background="@color/orange" /> | ||
|
||
<LinearLayout | ||
<RelativeLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentBottom="true" | ||
android:background="#e6d7d4d3" | ||
android:orientation="vertical" > | ||
|
||
<View | ||
android:layout_height="match_parent" > | ||
|
||
<ImageView | ||
android:id="@+id/comment_reply_send_btn" | ||
android:layout_width="40dp" | ||
android:layout_height="40dp" | ||
android:layout_alignParentRight="true" | ||
android:layout_centerVertical="true" | ||
android:layout_margin="10dp" | ||
android:clickable="true" | ||
android:src="@android:drawable/ic_menu_send" /> | ||
|
||
<com.sobremesa.waywt.views.WaywtSecondaryEditText | ||
android:id="@+id/comment_reply_et" | ||
android:layout_width="match_parent" | ||
android:layout_height="2px" | ||
android:background="@color/orange" /> | ||
|
||
<RelativeLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" > | ||
|
||
<ImageView | ||
android:id="@+id/comment_reply_send_btn" | ||
android:layout_width="40dp" | ||
android:layout_height="40dp" | ||
android:layout_alignParentRight="true" | ||
android:layout_centerVertical="true" | ||
android:layout_margin="10dp" | ||
android:clickable="true" | ||
android:src="@android:drawable/ic_menu_send" /> | ||
|
||
<com.sobremesa.waywt.views.WaywtSecondaryEditText | ||
android:id="@+id/comment_reply_et" | ||
android:layout_width="match_parent" | ||
android:layout_height="40dp" | ||
android:layout_centerVertical="true" | ||
android:layout_marginBottom="10dp" | ||
android:layout_marginLeft="10dp" | ||
android:layout_marginTop="10dp" | ||
android:layout_toLeftOf="@id/comment_reply_send_btn" | ||
android:hint="Type comment" | ||
android:textColor="@color/black" /> | ||
</RelativeLayout> | ||
</LinearLayout> | ||
</RelativeLayout> | ||
|
||
</ViewFlipper> | ||
android:layout_height="40dp" | ||
android:layout_centerVertical="true" | ||
android:layout_marginBottom="10dp" | ||
android:layout_marginLeft="10dp" | ||
android:layout_marginTop="10dp" | ||
android:layout_toLeftOf="@id/comment_reply_send_btn" | ||
android:hint="Type comment" | ||
android:textColor="@color/black" /> | ||
</RelativeLayout> | ||
</LinearLayout> | ||
|
||
</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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res/com.sobremesa.waywt" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:orientation="vertical" > | ||
|
||
<com.viewpagerindicator.TitlePageIndicator | ||
android:id="@+id/page_indicator" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="top" | ||
android:background="@android:color/black" | ||
app:footerColor="@color/orange" /> | ||
|
||
<android.support.v4.view.ViewPager | ||
android:id="@+id/pager" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" /> | ||
|
||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ViewFlipper xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:id="@+id/vf" | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res/com.sobremesa.waywt" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res/com.sobremesa.waywt"> | ||
android:layout_height="match_parent" | ||
android:orientation="vertical" > | ||
|
||
<ProgressBar | ||
android:id="@+id/loading" | ||
style="@android:style/Widget.ProgressBar.Small" | ||
<com.viewpagerindicator.TitlePageIndicator | ||
android:id="@+id/page_indicator" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="center" /> | ||
android:layout_gravity="top" | ||
android:background="@android:color/black" | ||
app:footerColor="@color/orange" /> | ||
|
||
<LinearLayout | ||
<android.support.v4.view.ViewPager | ||
android:id="@+id/pager" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:orientation="vertical" > | ||
android:layout_height="wrap_content" /> | ||
|
||
<com.viewpagerindicator.TitlePageIndicator | ||
android:id="@+id/page_indicator" | ||
android:layout_width="wrap_content" | ||
app:footerColor="@color/orange" | ||
|
||
android:layout_height="wrap_content" | ||
android:layout_gravity="top" | ||
android:background="@android:color/black" /> | ||
|
||
<android.support.v4.view.ViewPager | ||
android:id="@+id/pager" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" /> | ||
</LinearLayout> | ||
|
||
</ViewFlipper> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Copy this code snippet in your AndroidManifest.xml inside the <application> element to activate the content provider | ||
|
||
<provider android:name="com.sobremesa.waywt.contentprovider.Provider" android:authorities="com.sobremesa.waywt.provider.Model" /> | ||
|
Oops, something went wrong.