Browse Source
fix reel_share layout (date/check location)
renovate/org.jetbrains.kotlinx-kotlinx-coroutines-test-1.x
Austin Huang
3 years ago
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F
1 changed files with
1 additions and
7 deletions
-
app/src/main/java/awais/instagrabber/customviews/ChatMessageLayout.java
|
|
@ -94,7 +94,7 @@ public class ChatMessageLayout extends FrameLayout { |
|
|
|
heightSize += viewPartMainHeight; |
|
|
|
} else if (firstChildId == R.id.raven_media_container || firstChildId == R.id.profile_container || firstChildId == R.id.voice_media |
|
|
|
|| firstChildId == R.id.story_container || firstChildId == R.id.media_share_container || firstChildId == R.id.link_container |
|
|
|
|| firstChildId == R.id.ivAnimatedMessage) { |
|
|
|
|| firstChildId == R.id.ivAnimatedMessage || firstChildId == R.id.reel_share_container) { |
|
|
|
widthSize += viewPartMainWidth; |
|
|
|
heightSize += viewPartMainHeight + viewPartInfoHeight; |
|
|
|
} else { |
|
|
@ -104,12 +104,6 @@ public class ChatMessageLayout extends FrameLayout { |
|
|
|
if (firstChild instanceof TextView) { |
|
|
|
textMessage = (TextView) firstChild; |
|
|
|
} |
|
|
|
else if (firstChildId == R.id.reel_share_container) { |
|
|
|
textMessage = (TextView) ((ConstraintLayout) firstChild).getChildAt(5); |
|
|
|
} |
|
|
|
else if (firstChildId == R.id.story_container) { |
|
|
|
textMessage = (TextView) ((ConstraintLayout) firstChild).getChildAt(2); |
|
|
|
} |
|
|
|
else textMessage = null; |
|
|
|
if (textMessage != null) { |
|
|
|
viewPartMainLineCount = textMessage.getLineCount(); |
|
|
|