0
我有幾個問題。我有一個列表視圖,列表視圖適配器和列表視圖的活動。每個列表視圖列都有一個按鈕,它允許您從畫廊中選擇一個圖像。Xamarin從圖庫中選擇圖像並在ListView適配器中顯示它
因此,所有listview的對象都是在Adapter中定義的,你不能從Adapter中創建圖庫選擇。所以即時創建與訪問該活動。
1-)我可以將持有者對象傳遞給OnActivityResult方法嗎?這將解決所有問題
2-)那麼我如何選擇圖像,然後將其傳遞給我的適配器?我嘗試使用圖像uri的靜態變量,但它沒有同步。在我的適配器類中
public class Duzenle_Adapter
{
private LayoutInflater inflater;
public static Android.Net.Uri static_uri;
public Duzenle_Adapter(Context context, int resource, List<Yemek_Liste> objects,Duzenle_Activity d) : base(context, resource, objects)
{
this.c = context;
this.resource = resource;
this.yemekler = objects;
this.d = d;
}
public override View GetView(int position, View convertView, ViewGroup parent)
{
if (inflater == null)
{
inflater = (LayoutInflater)c.GetSystemService(Context.LayoutInflaterService);
}
if (convertView == null)
{
convertView = inflater.Inflate(resource, parent, false);
}
//List<Yemek_Liste> yemekler = new List<Yemek_Liste>();
//yemekler = db.selectItem();
Tutan_Duzenle tut = new Tutan_Duzenle(convertView);
tut.img.SetImageResource(yemekler[position].Get_ImageID());//default image
if (!tut.res_degis.HasOnClickListeners)
{
tut.res_degis.Click += delegate
{
d.tikla();
tut.img.SetImageURI(static_uri);
};
}
}
而在活動類中;
public class Duzenle_Activity:Activity
{
......
protected override void OnActivityResult(int requestCode, Result resultCode, Intent data)
{
base.OnActivityResult(requestCode, resultCode, data);
if (resultCode == Result.Ok)
{
Settings_Adapter.static_uri = data.Data;
}
}
public void tikla()
{
var imageIntent = new Intent();
imageIntent.SetType("image/*");
imageIntent.SetAction(Intent.ActionGetContent);
StartActivityForResult(
Intent.CreateChooser(imageIntent, "Select photo"), 0);
}
}
所以,當畫廊開闢了適配器嘗試圖像URI設置爲none它調用的函數。
在此先感謝。對不起,複雜的帖子
編輯:或者無論如何要等待「tikla」方法完成?這也可以解決問題。
編輯2:或者我們可以自定義onActivityResult?我們可以發送持有者對象作爲參數?
所以保存持有人必須是靜態成員吧? –
不,只是活動的成員 –
更新了代碼,更詳細的示例,但仍然建議考慮通過適配器來執行 –