第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

我的代碼有一些問題,我想在詳細(xì)活動(dòng)中顯示我的產(chǎn)品的價(jià)格,但是當(dāng)我構(gòu)建我的應(yīng)用程序時(shí)我被強(qiáng)制關(guān)閉

我的代碼有一些問題,我想在詳細(xì)活動(dòng)中顯示我的產(chǎn)品的價(jià)格,但是當(dāng)我構(gòu)建我的應(yīng)用程序時(shí)我被強(qiáng)制關(guān)閉

一只萌萌小番薯 2023-07-13 17:43:19
這是我的 Product.javaimport android.os.Parcel;import android.os.Parcelable;public class Product implements Parcelable {    private String name;    private String detail;    private String price;    private int photo;    public String getName() {        return name;    }    public void setName(String name) {        this.name = name;    }    public String getDetail() {        return detail;    }    public void setDetail(String detail) {        this.detail = detail;    }    public String getPrice() {        return price;    }    public void setPrice(String price) {        this.price = price;    }    public int getPhoto() {        return photo;    }    public void setPhoto(int photo) {        this.photo = photo;    }    @Override    public int describeContents() {        return 0;    }    @Override    public void writeToParcel(Parcel dest, int flags) {        dest.writeString(this.name);        dest.writeString(this.detail);        dest.writeString(this.price);        dest.writeInt(this.photo);    }    public Product() {    }    protected Product(Parcel in) {        this.name = in.readString();        this.detail = in.readString();        this.photo = in.readInt();        this.price = in.readString();    }    public static final Parcelable.Creator<Product> CREATOR = new Parcelable.Creator<Product>() {        @Override        public Product createFromParcel(Parcel source) {            return new Product(source);        }        @Override        public Product[] newArray(int size) {            return new Product[size];        }    };}
查看完整描述

1 回答

?
繁星點(diǎn)點(diǎn)滴滴

TA貢獻(xiàn)1803條經(jīng)驗(yàn) 獲得超3個(gè)贊

它在錯(cuò)誤日志中指出了問題。

嘗試在空對(duì)象引用上調(diào)用虛擬方法“void android.widget.TextView.setText(java.lang.CharSequence)”

第 58 行這里有些內(nèi)容為空

holder.tvName.setText(pd.getName());
holder.tvPrice.setText(pd.getPrice());
holder.tvDetail.setText(pd.getDetail());


查看完整回答
反對(duì) 回復(fù) 2023-07-13
  • 1 回答
  • 0 關(guān)注
  • 128 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)