-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixed inflate exception occured in ChapterRenderer.java #24
Open
wanyt
wants to merge
1
commit into
pedrovgs:master
Choose a base branch
from
wanyt:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+58
−12
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,42 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
style="@style/AppTheme.Chapter"> | ||
|
||
<!-- Chapter number --> | ||
|
||
<TextView android:id="@+id/tv_chapter_number" | ||
android:layout_alignParentLeft="true" | ||
android:layout_centerVertical="true" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:textColor="@color/sixth_color" | ||
android:textSize="@dimen/numeric_title_size" | ||
android:layout_marginLeft="@dimen/secondary_margin"/> | ||
|
||
<!-- Chapter title --> | ||
|
||
<TextView android:id="@+id/tv_chapter_title" | ||
android:layout_toRightOf="@id/tv_chapter_number" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="@dimen/secondary_margin" | ||
android:layout_marginLeft="@dimen/main_margin" | ||
android:textSize="@dimen/title_size" | ||
android:textColor="@color/fourth_color" | ||
android:singleLine="true"/> | ||
|
||
<!-- Chapter publish date --> | ||
|
||
<!--<item name="android:fontFamily">sans-serif-light</item>--> | ||
|
||
<TextView android:id="@+id/tv_chapter_publish_date" | ||
android:layout_height="wrap_content" | ||
android:layout_width="wrap_content" | ||
android:fontFamily="sans-serif-light" | ||
android:layout_marginLeft="@dimen/main_margin" | ||
android:paddingBottom="@dimen/secondary_margin" | ||
android:textColor="@color/fourth_color" | ||
android:layout_toRightOf="@id/tv_chapter_number" | ||
android:layout_below="@id/tv_chapter_title"/> | ||
|
||
</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 |
---|---|---|
@@ -1,18 +1,19 @@ | ||
# Project-wide Gradle settings. | ||
|
||
# IDE (e.g. Android Studio) users: | ||
# Settings specified in this file will override any Gradle settings | ||
# configured through the IDE. | ||
|
||
## Project-wide Gradle settings. | ||
# | ||
# For more details on how to configure your build environment visit | ||
# http://www.gradle.org/docs/current/userguide/build_environment.html | ||
|
||
# | ||
# Specifies the JVM arguments used for the daemon process. | ||
# The setting is particularly useful for tweaking memory settings. | ||
# Default value: -Xmx10248m -XX:MaxPermSize=256m | ||
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 | ||
|
||
# | ||
# When configured, Gradle will run in incubating parallel mode. | ||
# This option should only be used with decoupled projects. More details, visit | ||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects | ||
# org.gradle.parallel=true | ||
# org.gradle.parallel=true | ||
#Mon Aug 29 16:39:35 CST 2016 | ||
systemProp.http.proxyPassword=yEdd_yqhn | ||
systemProp.http.proxyHost=103.37.156.196 | ||
systemProp.http.proxyUser=duotai | ||
systemProp.http.proxyPort=11662 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These changes are not needed. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of creating a new layout why don't we update the original one?
row_chapter
.