View size wrap_content dose not show in recyclerviewWRAP_CONTENT not working after dynamically adding viewsandroid Image resize in listviewRecyclerView onClickHow to add dividers and spaces between items in RecyclerView?Why doesn't RecyclerView have onItemClickListener()?How to create RecyclerView with multiple view type?How to show an empty view with a RecyclerView?Complex layout with Relative and inside a TextView wrong sizeHandle large list of images with RecyclerView and Picasso issuesRecyclerView in NestedScrollView to fill remaining space
Can an American visitor in Canada get critical medications sent from home?
Adobe Illustrator: how to reset viewing angle with Astute Graphics plugins installed?
Advice for paying off student loans and auto loans now that I have my first 'real' job
What is the German word or phrase for "village returning to forest"?
I Would Like to Add a Line to a Table Plot with Tikz
Can I remove the doors before installing a sliding patio doors frame?
Why do so many pure math PhD students drop out or leave academia, compared to applied mathematics PhDs?
Why did Steve Rogers choose this character in Endgame?
Credit card details stolen every 1-2 years. What am I doing wrong?
What impact would a dragon the size of Asia have on the environment?
Accidentally deleted python and yum is not working in centos7
Identification of an AC transformer
How to say no to more work as a PhD student so I can graduate
If SWIFT is headquartered in Europe, why does the EU need to create a SWIFT alternative to be able to do transactions with Iran?
Bracket symbol added to G clef
Cauchy reals and Dedekind reals satisfy "the same mathematical theorems"
Interviewing with an unmentioned 9 months of sick leave taken during a job
Finding the package which provides a given command
Bone Decomposition
Do aircraft cabins have suspension?
How to remove the first colon ':' from a timestamp?
Adjusting vertical spacing in fractions?
Did 007 exist before James Bond?
Foldable, multipart helicopter blades
View size wrap_content dose not show in recyclerview
WRAP_CONTENT not working after dynamically adding viewsandroid Image resize in listviewRecyclerView onClickHow to add dividers and spaces between items in RecyclerView?Why doesn't RecyclerView have onItemClickListener()?How to create RecyclerView with multiple view type?How to show an empty view with a RecyclerView?Complex layout with Relative and inside a TextView wrong sizeHandle large list of images with RecyclerView and Picasso issuesRecyclerView in NestedScrollView to fill remaining space
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a recyclerview ( parent recyclerview ) and one more recyclerview inside. I am using relative layout to wrap the "child" recyclerview but it does not show when size of relative layout is wrap content(still showing if size of relativelayout is fixed ). this is my code:
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="70dp"
android:layout_marginRight="17dp"
android:layout_marginTop="5dp"
android:id="@+id/layout_media">
<android.support.v7.widget.RecyclerView
android:layout_width="wrap_content"
android:layout_gravity="center"
android:id="@+id/multiple_media_list"
android:layout_height="wrap_content">
</android.support.v7.widget.RecyclerView>
</RelativeLayout>
add a comment |
I have a recyclerview ( parent recyclerview ) and one more recyclerview inside. I am using relative layout to wrap the "child" recyclerview but it does not show when size of relative layout is wrap content(still showing if size of relativelayout is fixed ). this is my code:
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="70dp"
android:layout_marginRight="17dp"
android:layout_marginTop="5dp"
android:id="@+id/layout_media">
<android.support.v7.widget.RecyclerView
android:layout_width="wrap_content"
android:layout_gravity="center"
android:id="@+id/multiple_media_list"
android:layout_height="wrap_content">
</android.support.v7.widget.RecyclerView>
</RelativeLayout>
You seems to be nestingRecylerView. Please post complete UI code for better understanding.
– Geek
Mar 26 at 9:39
Which part do you want me to post? Thanks
– Trần Quốc Trung
Mar 26 at 10:26
Where you have done nesting ofRecyclerView
– Geek
Mar 26 at 10:28
This is an item in the "parent" recyclerview. The "parent" works fine. But, like I said in the description, wrap content attribute dose not work when I set it for the "child" recyclerview ( still working if relativelayout's size is fixed)
– Trần Quốc Trung
Mar 26 at 10:45
add a comment |
I have a recyclerview ( parent recyclerview ) and one more recyclerview inside. I am using relative layout to wrap the "child" recyclerview but it does not show when size of relative layout is wrap content(still showing if size of relativelayout is fixed ). this is my code:
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="70dp"
android:layout_marginRight="17dp"
android:layout_marginTop="5dp"
android:id="@+id/layout_media">
<android.support.v7.widget.RecyclerView
android:layout_width="wrap_content"
android:layout_gravity="center"
android:id="@+id/multiple_media_list"
android:layout_height="wrap_content">
</android.support.v7.widget.RecyclerView>
</RelativeLayout>
I have a recyclerview ( parent recyclerview ) and one more recyclerview inside. I am using relative layout to wrap the "child" recyclerview but it does not show when size of relative layout is wrap content(still showing if size of relativelayout is fixed ). this is my code:
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="70dp"
android:layout_marginRight="17dp"
android:layout_marginTop="5dp"
android:id="@+id/layout_media">
<android.support.v7.widget.RecyclerView
android:layout_width="wrap_content"
android:layout_gravity="center"
android:id="@+id/multiple_media_list"
android:layout_height="wrap_content">
</android.support.v7.widget.RecyclerView>
</RelativeLayout>
edited Mar 26 at 9:00
Touhidul Islam
1,7281 gold badge5 silver badges19 bronze badges
1,7281 gold badge5 silver badges19 bronze badges
asked Mar 26 at 8:16
Trần Quốc TrungTrần Quốc Trung
351 gold badge1 silver badge7 bronze badges
351 gold badge1 silver badge7 bronze badges
You seems to be nestingRecylerView. Please post complete UI code for better understanding.
– Geek
Mar 26 at 9:39
Which part do you want me to post? Thanks
– Trần Quốc Trung
Mar 26 at 10:26
Where you have done nesting ofRecyclerView
– Geek
Mar 26 at 10:28
This is an item in the "parent" recyclerview. The "parent" works fine. But, like I said in the description, wrap content attribute dose not work when I set it for the "child" recyclerview ( still working if relativelayout's size is fixed)
– Trần Quốc Trung
Mar 26 at 10:45
add a comment |
You seems to be nestingRecylerView. Please post complete UI code for better understanding.
– Geek
Mar 26 at 9:39
Which part do you want me to post? Thanks
– Trần Quốc Trung
Mar 26 at 10:26
Where you have done nesting ofRecyclerView
– Geek
Mar 26 at 10:28
This is an item in the "parent" recyclerview. The "parent" works fine. But, like I said in the description, wrap content attribute dose not work when I set it for the "child" recyclerview ( still working if relativelayout's size is fixed)
– Trần Quốc Trung
Mar 26 at 10:45
You seems to be nesting
RecylerView. Please post complete UI code for better understanding.– Geek
Mar 26 at 9:39
You seems to be nesting
RecylerView. Please post complete UI code for better understanding.– Geek
Mar 26 at 9:39
Which part do you want me to post? Thanks
– Trần Quốc Trung
Mar 26 at 10:26
Which part do you want me to post? Thanks
– Trần Quốc Trung
Mar 26 at 10:26
Where you have done nesting of
RecyclerView– Geek
Mar 26 at 10:28
Where you have done nesting of
RecyclerView– Geek
Mar 26 at 10:28
This is an item in the "parent" recyclerview. The "parent" works fine. But, like I said in the description, wrap content attribute dose not work when I set it for the "child" recyclerview ( still working if relativelayout's size is fixed)
– Trần Quốc Trung
Mar 26 at 10:45
This is an item in the "parent" recyclerview. The "parent" works fine. But, like I said in the description, wrap content attribute dose not work when I set it for the "child" recyclerview ( still working if relativelayout's size is fixed)
– Trần Quốc Trung
Mar 26 at 10:45
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55352541%2fview-size-wrap-content-dose-not-show-in-recyclerview%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55352541%2fview-size-wrap-content-dose-not-show-in-recyclerview%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You seems to be nesting
RecylerView. Please post complete UI code for better understanding.– Geek
Mar 26 at 9:39
Which part do you want me to post? Thanks
– Trần Quốc Trung
Mar 26 at 10:26
Where you have done nesting of
RecyclerView– Geek
Mar 26 at 10:28
This is an item in the "parent" recyclerview. The "parent" works fine. But, like I said in the description, wrap content attribute dose not work when I set it for the "child" recyclerview ( still working if relativelayout's size is fixed)
– Trần Quốc Trung
Mar 26 at 10:45