在我的应用中,我使用CardView
。但是,只有在我点击视图并切换到另一个activity
这是我的 xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:foreground="?android:attr/selectableItemBackground">
<ImageView
android:id="@+id/photo_image_view"
android:layout_width="match_parent"
android:layout_height="300dp"
android:scaleType="centerCrop"
tools:ignore="ContentDescription"
tools:src="@color/green_400" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="300dp">
<TextView
android:id="@+id/text_view_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="61dp"
android:ellipsize="marquee"
android:paddingEnd="8dp"
android:paddingStart="8dp"
android:text="BORIS"
android:textSize="36sp" />
</RelativeLayout>
</android.support.v7.widget.CardView>
这是我的bindMarker方法
void bindMarker(Marker marker) {
mMarker = marker;
mNameTextView.setText(mMarker.getName());
mAuthorTextView.setText(mMarker.getAuthor());
Picasso.with(mImageView.getContext())
.load(mMarker.getImage().getUrl())
.placeholder(R.color.grey_400)
.networkPolicy(NetworkPolicy.OFFLINE)
.into(mImageView);
}
感谢您的关注!
答案 0 :(得分:0)
在清单中使用互联网权限。