最後の数日間、Adobe FlexのPerson SearchアプリケーションでBlackberry Playbookに苦労しました。基本的に私は次のことを持っている:ボトムカスタムリストデザイン - Adobe Flex
private var persons:ArrayCollection = new ArrayCollection();
public function init():void{
var p1:PersonSummary = new PersonSummary("Joe Smith", "9/9/1987", "img1.jpg");
var p2:PersonSummary = new PersonSummary("Ben Smith", "9/5/1987", "img2.jpg");
var p3:PersonSummary = new PersonSummary("John Doe", "9/9/1967", "img3.jpg");
persons.add(p1);
persons.add(p2);
persons.add(p3);
}
で
MXMLインターフェイスを持つメインのApp PersonSummary
class PersonSummary{
private var name:String;
private var dob:String;
private var image:String;
public function PersonSummary(n:String,d:String,i:String){
this.name = n;
this.dob = d;
this.image = i;
}
...
}
私が探しているインタフェース:
MXMLとは何ですか?永遠に私のためにこの問題を解決できる誰かの借金に!右の行にあなたを取得する
おかげ フィル
[Adobe Flexでの画像](0120)フリーハンドの画像: –
申し訳ありませんが、これは明らかに以下の複製です:http://stackoverflow.com/questions/5498789/images-in-adobe-flex –