- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在加载图片时使用了 Picasso,我的问题是我的卡片 View 在加载图片时改变了它的维度。看起来像这样;
之前 image(1) 在 Image(2) 之后加载并看起来像这样
如何在图像加载时固定尺寸。这是我的代码
抽屉布局列表.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"
android:layout_width="match_parent"
android:layout_height="128dp"
card_view:cardBackgroundColor="@android:color/transparent"
card_view:cardCornerRadius="2dp"
card_view:cardElevation="3dp">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="3">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:layout_weight="2">
<ImageView
android:id="@+id/partner_post_image"
android:layout_width="90dp"
android:layout_height="90dp"
android:layout_margin="8dp" />
</LinearLayout>
<LinearLayout
android:layout_weight="1"
android:weightSum="3"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/partner_store"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_weight="1"
android:gravity="bottom|start"
android:text="Store Name"
android:textAlignment="viewStart"
android:textSize="18sp"
android:textStyle="bold" />
<TextView
android:id="@+id/partner_post_desc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"
android:layout_weight="2"
android:gravity="top|start"
android:text="Description Here"
android:textAlignment="viewStart"
android:textColor="#000"
android:textSize="12sp" />
</LinearLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
我的RecyclerView.Holder代码是这样的
public class PartnerStoreViewHolder extends RecyclerView.ViewHolder {
private View mView;
public PartnerStoreViewHolder(View itemView) {
super(itemView);
mView = itemView;
}
public void setStore(String store ){
TextView storeName = (TextView) mView.findViewById(R.id.partner_store);
storeName.setText(store);
}
public void setDescription(String description){
TextView descName = (TextView) mView.findViewById(R.id.partner_post_desc);
descName.setText(description);
}
public void setImage(Context context, String image){
ImageView postImage = (ImageView) mView.findViewById(R.id.partner_post_image);
Picasso.with(context)
.load(image)
.error(android.R.drawable.stat_notify_error)
.placeholder(R.drawable.ic_blu_logo)
.fit()
.into(postImage);
}
}
我的 fragment 代码和适配器
public class PartnerStore extends BaseFragment {
private RecyclerView recyclerView;
private FirebaseRecyclerAdapter<PartnersList, PartnerStoreViewHolder> firebaseRecyclerAdapter;
private DatabaseReference mRef;
public PartnerStore() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.drawer_partner_store, container, false);
mRef = MyDatabaseUtil.getDatabase().getReference().child("partners");
recyclerView = (RecyclerView) view.findViewById(R.id.partner_store_recycler_view);
recyclerView.setHasFixedSize(true);
recyclerView.setLayoutManager(new LinearLayoutManager(getActivity()));
return view;
}
@Override
public void onStart() {
super.onStart();
firebaseRecyclerAdapter = new FirebaseRecyclerAdapter<PartnersList, PartnerStoreViewHolder>(
PartnersList.class,
R.layout.drawer_partner_store_list,
PartnerStoreViewHolder.class,
mRef
){
@Override
protected void populateViewHolder(PartnerStoreViewHolder viewHolder, PartnersList model, int position) {
viewHolder.setStore(model.getPartnerStore());
viewHolder.setDescription(model.getDescription());
viewHolder.setImage(getActivity() ,model.getImage());
}
};
recyclerView.setAdapter(firebaseRecyclerAdapter);
}
@Override
public void onDetach() {
super.onDetach();
firebaseRecyclerAdapter.cleanup();
}
}
谢谢..
更新
我的问题是我从来没有在我的 Texview 中使用过空间,虽然我仍然不知道为什么它会改变尺寸。好吧,我在我的 textview 上作弊,我添加了空格以使用我的 textview 中未使用的间隔我实现它是这样的......
public void setDescription(String description){
TextView descName = (TextView) mView.findViewById(R.id.partner_post_desc);
if (description.length() <= 30){
for (int x=0; x <= 99; x++){
description = description + " "; //adding white spaces
}
descName.setText(description);
}else {
descName.setText(description);
}
}
感谢所有帮助...我很感激
最佳答案
您只将 View 的第三部分提供给 textviews,将另外两部分提供给 imageview 的父布局,由于 imageview 宽度是固定的,因此未使用。您根本不应该使用重量,因为您为 imageview 提供固定的宽度和高度并为 textview 包装内容。
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/partner_post_image"
android:layout_width="90dp"
android:layout_height="90dp"
android:layout_margin="8dp" />
<LinearLayout
android:weightSum="3"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/partner_store"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_weight="1"
android:gravity="bottom|start"
android:text="Store Name"
android:textAlignment="viewStart"
android:textSize="18sp"
android:textStyle="bold" />
<TextView
android:id="@+id/partner_post_desc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"
android:layout_weight="2"
android:gravity="top|start"
android:text="Description Here"
android:textAlignment="viewStart"
android:textColor="#000"
android:textSize="12sp" />
</LinearLayout>
</LinearLayout>
然后尝试
Picasso.with(context)
.load(image)
.error(android.R.drawable.stat_notify_error)
.placeholder(R.drawable.ic_blu_logo)
.fit()
.centerCrop()
.into(postImage);
如果您还有任何问题,请告诉我。
关于java - picasso :为什么我的卡片 View 在图像加载时改变了尺寸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44238043/
Picasso.with(context).load("url").into(imageView); 在这里,我想要位图而不是 url,我该如何实现这一点。 像下面- Picasso.with(con
我在运行低于 API 版本 21 的手机上遇到 noClassDefFoundError。首先它与其他类一起出现,在删除所有可能的代码后,它开始与 Picasso 库一起出现。我附上了我的 logca
在 Picasso.with(context) .. public static Picasso with(Context context) { if (singleton == null) {
我第一次尝试使用Picasso 如官方网站示例: private void setItemBgImageUsingPicasso(View convertView) { String imag
我添加了 picasso 依赖项,但似乎没有用。我尝试更改版本。但还是没用。 这是我的 build.gradle(模块) apply plugin: 'com.android.application'
我想用 com.squareup.picasso:picasso:2.5.3-SNAPSHOT 编译。但是我得到了这个错误: Error:Could not find com.squareup.pic
我只在 Lollipop 版本上遇到过这个问题。我可以在 Lollipop 以上的版本上轻松运行该应用程序。当我在我的应用程序文件中运行该应用程序时出现错误: java.lang.NoClass
它在 Gradle build 和 Compile time 都没有给出任何错误消息,但是当我运行应用程序时它崩溃并给我以下错误消息。 Caused by: java.lang.ClassNotFou
在 android studio 中,Gradle 项目无法同步并导致此错误。 Error:(29, 13) Failed to resolve: com.squareup.picasso:picas
首先我知道这个错误是asked已经,但我的情况有点不同: 我正在分发 SDK(Android 库项目)。我的 SDK 需要其他东西(播放服务、支持 v4、gson jar 等)Picasso,所以我在
我认为这是一个库兼容性问题,但值得一试。 我正在尝试在我的应用程序中实现图像 slider ,但 Picasso 库出现了异常,它给了我 noSuchMethodError。 好吧,我连接两个字符串,
我对此非常绝望。问题是 picasso 只显示占位符图标。 我的 FirebaseStorageRefernce 代码看起来像这样引用 Firebase Blog post : StorageRef
我们正在使用Picasso加载应用程序中的所有图像,从小型化身到大型全屏图像,每10个每日事件用户中就会出现1个此类错误。 picasso 缓存已满,但据我们了解,它应该自行维护。 我们的日志表明,在
在我的函数中: public void getPointMarkerFromUrl(final String url, final OnBitmapDescriptorRetrievedListene
我正在尝试使用 Picasso 库加载矢量绘图 Picasso.get().load(R.drawable.project).into(image3a, new Callback() {
出于某种原因,每当我尝试将从 GET 请求获取的 URL 加载到服务器时,它都不会加载,但如果我尝试直接加载字符串,它就会工作。这是我的代码: new Thread(new Runnable() {
我在使用 picasso 库时遇到问题。当我使用此库(implementation 'com.squareup.picasso:picasso:2.71828')时,我的图像不会显示在 ImageVi
我使用 Picasso 库从 URL 加载图像。我想获得真实的图像大小,但我只能获得内存中的图像大小: Picasso.with(this) .load(imageUrl) .erro
我正在尝试在我的 gradle-android 项目中使用 Picasso 库。我正在使用 Eclipse IDE。当我对我的项目进行 gradle 构建时,构建正确,但在使用 Picasso 的 *
我遇到了一个问题,即在不同版本的 Android(KitKat 和 Marshmellow)上的某些设备(非 Nexus 设备)上,当我尝试使用 picasso 将图像加载到 ImageView 中时
我是一名优秀的程序员,十分优秀!