に区切りを描画するために、私は以下のようなデザインにしたい: - rootとしてセパレータとして表示より相対的なレイアウトを持つ単一の行はどのようにrecyclerview
私はアプローチで設計されています。しかし、それを実行すると、セパレータが表示されません。 いくつかのアプローチで、どのように設計するのかお手伝いしてください。
コード:
<android.support.v7.widget.CardView android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
app:cardCornerRadius="3dp"
app:cardElevation="1dp"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
app:cardBackgroundColor="@color/white">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp"
android:background="@drawable/outline_with_white_background">
<android.support.v7.widget.AppCompatTextView
android:text="Lead Name:"
android:textColor="@color/black"
android:id="@+id/tv_text"
android:textSize="@dimen/follow_up_text_size"
android:layout_marginRight="40dp"
android:visibility="invisible"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<View
android:id="@+id/centerShim"
android:layout_width="1px"
android:layout_height="match_parent"
android:background="@color/splash_status_color"
android:layout_toRightOf="@+id/tv_text"
android:layout_toEndOf="@+id/tv_text"
/>
<android.support.v7.widget.AppCompatTextView
style="@style/label"
android:text="Lead Name:"
android:textColor="@color/black"
android:id="@+id/tv_lead_name_label"
android:textSize="@dimen/follow_up_text_size"
/>
<android.support.v7.widget.AppCompatTextView
style="@style/textview"
android:id="@+id/tv_lead_name"
android:textColor="@color/colorPrimary"
android:textSize="@dimen/follow_up_text_size"
android:text="ARN"/>
<android.support.v7.widget.AppCompatTextView
style="@style/label"
android:text="Lead Source:"
android:textStyle="normal"
android:id="@+id/tv_lead_source_label"
android:textSize="@dimen/follow_up_text_size"
android:layout_below="@+id/tv_lead_name_label"/>
<android.support.v7.widget.AppCompatTextView
style="@style/textview"
android:id="@+id/tv_lead_source"
android:text="ARN"
android:layout_below="@+id/tv_lead_name_label"
android:textSize="@dimen/follow_up_text_size"
/>
</RelativeLayout>
</android.support.v7.widget.CardView>
は、実行時に以下の表示:
はい、役に立ちました。どうもありがとう。 –
私の答えが助けて役に立つと思われるなら、これを正解とマークして投票してください。事前に感謝:) – FAT