下記のように、recyclerView(id=my_recycler_view)の中にbuttonなどをまとめたid=layout_subが入っている状態なのですが、それをrecyclerView(id=my_recycler_view)の下にid=layout_subを配置するようにしたいのですが、
例えば、下記のようにid=layout_subに制約を指定しても中々うまくいきません。
解決方法を教えていただけると幸いです。
xml
1 app:layout_constraintTop_toBottomOf="@+id/my_recycler_view" 2 app:layout_constraintVertical_chainStyle="packed"
現状のソース
xml
1<?xml version="1.0" encoding="utf-8"?> 2 3<android.support.constraint.ConstraintLayout 4 xmlns:android="http://schemas.android.com/apk/res/android" 5 xmlns:app="http://schemas.android.com/apk/res-auto" 6 xmlns:tools="http://schemas.android.com/tools" 7 android:id="@+id/layout_main" 8 android:layout_width="match_parent" 9 android:layout_height="match_parent" 10 tools:context=".TalkFragment"> 11 12 <android.support.v7.widget.RecyclerView 13 android:id="@+id/my_recycler_view" 14 android:layout_width="match_parent" 15 android:layout_height="match_parent" 16 android:scrollbars="vertical" 17 tools:layout_editor_absoluteX="272dp" 18 tools:layout_editor_absoluteY="-16dp"/> 19 20 <android.support.constraint.ConstraintLayout 21 xmlns:android="http://schemas.android.com/apk/res/android" 22 xmlns:app="http://schemas.android.com/apk/res-auto" 23 xmlns:tools="http://schemas.android.com/tools" 24 android:id="@+id/layout_sub" 25 android:layout_width="match_parent" 26 android:layout_height="match_parent" 27 app:layout_constraintTop_toBottomOf="@+id/my_recycler_view" 28 app:layout_constraintVertical_chainStyle="packed" /> 29 30 <Button 31 android:id="@+id/button1" 32 android:layout_width="55dp" 33 android:layout_height="54dp" 34 android:text="カメラ" 35 app:layout_constraintBottom_toBottomOf="parent" 36 app:layout_constraintLeft_toLeftOf="parent" 37 app:layout_constraintTop_toTopOf="parent" 38 app:layout_constraintVertical_bias="1.0" /> 39 40 <Button 41 android:id="@+id/button2" 42 android:layout_width="55dp" 43 android:layout_height="54dp" 44 android:text="画像" 45 app:layout_constraintBottom_toBottomOf="parent" 46 app:layout_constraintLeft_toRightOf="@+id/button1" 47 app:layout_constraintTop_toTopOf="parent" 48 app:layout_constraintVertical_bias="1.0" /> 49 50 <Button 51 android:id="@+id/button3" 52 android:layout_width="wrap_content" 53 android:layout_height="wrap_content" 54 android:text="送信" 55 app:layout_constraintBottom_toBottomOf="parent" 56 app:layout_constraintVertical_bias="0.994" 57 app:layout_constraintLeft_toRightOf="@+id/edittext" /> 58 59 <EditText 60 android:id="@+id/edittext" 61 android:layout_width="180dp" 62 android:layout_height="54dp" 63 android:background="@drawable/edittext_background" 64 app:layout_constraintBottom_toBottomOf="parent" 65 app:layout_constraintLeft_toRightOf="@+id/button2" 66 app:layout_constraintTop_toTopOf="parent" 67 app:layout_constraintVertical_bias="1.0" /> 68 </android.support.constraint.ConstraintLayout> 69 70</android.support.constraint.ConstraintLayout>
XML
1<?xml version="1.0" encoding="utf-8"?> 2 3<android.support.constraint.ConstraintLayout 4 xmlns:android="http://schemas.android.com/apk/res/android" 5 xmlns:app="http://schemas.android.com/apk/res-auto" 6 xmlns:tools="http://schemas.android.com/tools" 7 android:id="@+id/layout_main" 8 android:layout_width="match_parent" 9 android:layout_height="match_parent" 10 tools:context=".TalkFragment"> 11 12 <android.support.v7.widget.RecyclerView 13 android:id="@+id/my_recycler_view" 14 android:layout_width="wrap_content" 15 android:layout_height="wrap_content" 16 android:scrollbars="vertical" 17 app:layout_constraintTop_toTopOf="parent" 18 app:layout_constraintLeft_toLeftOf="parent"/> 19 20 <android.support.constraint.ConstraintLayout 21 xmlns:android="http://schemas.android.com/apk/res/android" 22 xmlns:app="http://schemas.android.com/apk/res-auto" 23 xmlns:tools="http://schemas.android.com/tools" 24 android:id="@+id/layout_sub" 25 android:layout_width="wrap_content" 26 android:layout_height="wrap_content" 27 app:layout_constraintTop_toBottomOf="@+id/my_recycler_view" 28 app:layout_constraintLeft_toLeftOf="parent" 29 app:layout_constraintBottom_toTopOf="parent" 30 app:layout_constraintVertical_chainStyle="packed" > 31 32 <Button 33 android:id="@+id/button1" 34 android:layout_width="55dp" 35 android:layout_height="54dp" 36 android:text="カメラ" 37 app:layout_constraintBottom_toBottomOf="parent" 38 app:layout_constraintLeft_toLeftOf="parent" 39 app:layout_constraintTop_toTopOf="parent" 40 app:layout_constraintVertical_bias="1.0" /> 41 42 <Button 43 android:id="@+id/button2" 44 android:layout_width="55dp" 45 android:layout_height="54dp" 46 android:text="画像" 47 app:layout_constraintBottom_toBottomOf="parent" 48 app:layout_constraintLeft_toRightOf="@+id/button1" 49 app:layout_constraintTop_toTopOf="parent" 50 app:layout_constraintVertical_bias="1.0" /> 51 52 <Button 53 android:id="@+id/button3" 54 android:layout_width="wrap_content" 55 android:layout_height="wrap_content" 56 android:text="送信" 57 app:layout_constraintBottom_toBottomOf="parent" 58 app:layout_constraintVertical_bias="0.994" 59 app:layout_constraintLeft_toRightOf="@+id/edittext" /> 60 61 <EditText 62 android:id="@+id/edittext" 63 android:layout_width="180dp" 64 android:layout_height="54dp" 65 android:background="@drawable/edittext_background" 66 app:layout_constraintBottom_toBottomOf="parent" 67 app:layout_constraintLeft_toRightOf="@+id/button2" 68 app:layout_constraintTop_toTopOf="parent" 69 app:layout_constraintVertical_bias="1.0" /> 70 </android.support.constraint.ConstraintLayout> 71 72</android.support.constraint.ConstraintLayout>
回答2件
あなたの回答
tips
プレビュー