いくつかのTextViewを上下に配置し、最後にViewPagerを使用してRelativeLayoutを使用します。
ViewPagerのパラメーターにはandroid:layout_below = "@ id / dialog_access_right"があり、dialog_access_rightは最後のTextViewです。
私の問題は、この特定のTextViewが複数行(最大3)になる可能性があることです(必ずしもそうとは限りません)。ただし、ViewPagerは常に最初の行の後に配置されるため、残りのTextViewは非表示になります。
複数行を使用して、行パラメーターを3に設定し(場合によっては2行の空白行がある場合でもそれほど悪くはありません)、デフォルトのテキストに2つの改行を入れてみました。この作品は何もありません。
ViewPagerに、それ自体を再描画して位置合わせするように指示する方法はありますか(relativelayoutで無効化を試みましたが、何もしませんでした...)。
<TextView
android:id="@+id/dialog_access_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@id/access_right_title"
android:layout_alignBottom="@id/access_right_title"
android:layout_toRightOf="@id/access_right_title"
android:text="@string/dialog_access_right" />
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@id/dialog_access_right" />
編集:これが私の問題を示すスクリーンショットです。「CanRead」TextViewは実際には2行(3行)の複数行のTextViewであり、青い線はViewPager内のPagerTabStripです。