|
|
@@ -1,62 +0,0 @@ |
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
|
|
xmlns:tools="http://schemas.android.com/tools" |
|
|
|
android:id="@+id/llItem" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:background="@color/c_white" |
|
|
|
android:orientation="vertical" |
|
|
|
tools:context="com.bigwinepot.nwdn.pages.story.common.ui.StoryPostItemVH" |
|
|
|
> |
|
|
|
|
|
|
|
<!-- 头部 --> |
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="@dimen/dp_35" |
|
|
|
android:layout_marginBottom="@dimen/dp_12" |
|
|
|
android:layout_marginTop="@dimen/dp_16" |
|
|
|
android:gravity="center_vertical" |
|
|
|
android:orientation="horizontal" |
|
|
|
android:paddingLeft="@dimen/dp_15" |
|
|
|
> |
|
|
|
|
|
|
|
<androidx.cardview.widget.CardView |
|
|
|
android:layout_width="@dimen/dp_35" |
|
|
|
android:layout_height="@dimen/dp_35" |
|
|
|
app:cardBackgroundColor="@color/c_white" |
|
|
|
app:cardElevation="0dp" |
|
|
|
app:cardCornerRadius="18dp"> |
|
|
|
|
|
|
|
<ImageView |
|
|
|
android:id="@+id/ivHeader" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="match_parent" |
|
|
|
android:scaleType="centerCrop" /> |
|
|
|
|
|
|
|
</androidx.cardview.widget.CardView> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:id="@+id/tvUserName" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginLeft="@dimen/dp_8" |
|
|
|
android:layout_marginRight="@dimen/dp_20" |
|
|
|
android:maxLines="1" |
|
|
|
android:ellipsize="end" |
|
|
|
android:textColor="@color/c_font_a" |
|
|
|
android:textSize="16sp" |
|
|
|
android:textStyle="bold" /> |
|
|
|
|
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
<!-- 灰色底线 --> |
|
|
|
<View |
|
|
|
android:id="@+id/vBottomLine" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="@dimen/dp_1" |
|
|
|
android:background="@color/c_bg_c" |
|
|
|
android:layout_marginStart="@dimen/dp_15" |
|
|
|
/> |
|
|
|
|
|
|
|
</LinearLayout> |