我已经在解析数据库上发布了我的信息,但我想使用recircularView检索它。 任何人都可以指导我或指导我如何做到这一点?
这是我的xml代码,它包含了recircularView的布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="@dimen/size_byte"
android:layout_marginLeft="@dimen/size_word"
android:layout_marginRight="@dimen/size_word"
android:layout_marginTop="@dimen/size_byte">
<ImageView
android:id="@+id/adPic"
android:layout_width="@dimen/movie_thumbnail_width"
android:layout_height="@dimen/movie_thumbnail_height"
android:layout_centerVertical="true"
android:src="@mipmap/ic_launcher" />
<TextView
android:id="@+id/adTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignTop="@+id/adPic"
android:layout_marginLeft="56dp"
android:alpha="0.87"
android:gravity="right"
android:padding="@dimen/size_half_byte"
android:text="Hitman Agent 47"
android:textSize="@dimen/size_text_primary" />
<TextView
android:id="@+id/adPrice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@id/adTitle"
android:alpha="0.87"
android:padding="@dimen/size_half_byte"
android:text="5.00$"
android:textSize="@dimen/size_text_secondary" />
<TextView
android:id="@+id/adDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@id/adPrice"
android:alpha="0.87"
android:padding="@dimen/size_half_byte"
android:text="31-31-31"
android:textSize="@dimen/size_text_secondary" />
</RelativeLayout>
答案 0 :(得分:0)
您可以使用ParseFile的getUrl()方法从ParseObject获取图片网址
假设您获得了像这样的ParseObjects列表
resource :controls, controller: 'controller1' # add this line
resource :controller1 # possibly this is in your routes.rb already
稍后在getView中使用文件URL仅为listview中的可见项获取图像。这样你的列表视图就不会崩溃。