Xamarin.Android:自动刷新ImageView的显示,而无需再次调用整个活动

时间:2019-01-09 09:00:46

标签: c# android xamarin.android refresh

在我的Xamarin.Android-App中,打开特殊页面(活动)时,在create上显示一个表。 ListAdapter定义该表中的某些字段。 我有一个函数,可以获取外部整数。 int是该表中显示的其他数据。 但是此函数仅被调用一次(创建时)。 在某个时间间隔内,如何在运行时将此函数称为多重时间?我希望如果接收到的int发生变化,则表中int的显示也发生变化,而无需再次调用整个活动。

任何人都可以帮助我,并给我提示如何执行此操作吗?那真是太好了!

请让我分享一些代码,以便您更容易理解我:

Resource.Layout.Activity:

<LinearLayout>
    [...]
    <ListView
        android:visibility="gone"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/ListView" />
</LinearLayout> 

活动:

protected override void OnCreate(Bundle bundle)
{
    base.OnCreate(bundle);
    SetContentView(Resource.Layout.Activity);
    [...]    
    var lv = FindViewById<ListView>(Resource.Id.ListView);
    lv.Adapter = new ListAdapter(this, Resource.Layout.List, list.CurrentList, Intent.GetStringExtra("ServerIP"));
}

Resource.Layout.List:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android"     
android:orientation="horizontal"     
android:layout_width="fill_parent"     
android:layout_height="fill_parent">

[...]

<ImageView         
    android:id="@+id/ImageView" />

</RelativeLayout>

ListAdapter类:ArrayAdapter

public ListAdapter(Context Context, int ListId, List<Geraet> list, string serverip) : base(Context, ListId, Geraete)
{ 
    this.List = list; 
}

[...]

public override View GetView(int position, View convertView, ViewGroup parent)
{
    View v = convertView;
    if (v == null)
    {
        LayoutInflater inflater = (LayoutInflater) Context.GetSystemService(Context.LayoutInflaterService);
        v = inflater.Inflate(Resource.Layout.List, parent, false);
    }
    if (Get_Status(List[position]) == 1)
    {
        v.FindViewById<ImageView>(Resource.Id.ImageView).SetImageResource(Resource.Drawable.green);
    }
    if (Get_Status(List[position]) != 1)
    {
        v.FindViewById<ImageView>(Resource.Id.ImageView).SetImageResource(Resource.Drawable.red);
    }
}

[...]

private int Get_Status(Geraet geraet)
{
    var request = HttpWebRequest.Create(string.Format(Constants.StatusPath, Serverip, Constants.WebservicePort, geraet.Ip));
    request.ContentType = "application/json";
    request.Method = "GET";

    using (HttpWebResponse response = request.GetResponse() as HttpWebResponse)
    {
        using (StreamReader reader = new StreamReader(response.GetResponseStream()))
        {
            var content = reader.ReadToEnd();

            var result = System.Text.RegularExpressions.Regex.Replace(content, @"[^0-9]", "");

            if (result == string.Empty)
            {
                return -2;
            }
            else
            {
                return Int32.Parse(result);
            }
        }
    }
}

感谢您提前回答并致以最诚挚的问候

1 个答案:

答案 0 :(得分:0)

您可以使用//noinspection UseSparseArrays <-- Has no effect Map<Integer, String> map = new HashMap<>(); 完成此操作:

System.Threading

var thread = new Thread(() => MethodToRun(garaet)); thread.Start(); 中运行以上代码。在OnCreate()中,您可以做任何您想做的事情。例如:

MethodToRun()

在这种情况下,void MethodToRun(Garaet garaet) { while(true) { Thread.Sleep(1000); Activity.RunOnUiThread((garaet) => { [...] }); } } 将在UI线程上每秒运行一次。将其替换为用于处理图像更新的代码。