将数据从AdapterView绑定到RelativeLayout的最佳方法

时间:2013-09-19 01:41:29

标签: android relativelayout android-adapterview

我是Java和编程新手。我一直在尝试从JSON中获取一个简单适配器中的结果集,以将数据加载到RelativeLayout中包含的TextView中。非常感谢正确方向的链接或任何帮助,在此先感谢。 亲切的问候。

            /**
                     * After completing background task Dismiss the progress dialog
                     * **/
                    protected void onPostExecute(String file_url) {
                        // dismiss the dialog after getting all products
                        pDialog.dismiss();
                        // updating UI from Background Thread
                        runOnUiThread(new Runnable() {
                            public void run() {
                                /**
                                 * Updating parsed JSON data into RelativeLayout
                                 * */
                                AdapterView adapter = new AdapterView(
                                        AllProductsActivity.this, productsview,
                                        R.layout.sample_view, new String[] { TAG_PID,
                                                TAG_NAME},
                                        new int[] { R.id.pid, R.id.name });
                                // updating View view
                                setAdapter(adapter);
                            }
                        });

                    }

                }
            }

以下是我的XML文件

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

                <TextView
                    android:id="@+id/pid"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignLeft="@+id/name"
                    android:layout_below="@+id/name"
                    android:layout_marginTop="88dp"
                    android:text="Product ID"
                    android:textAppearance="?android:attr/textAppearanceMedium" />

                <TextView
                    android:id="@+id/name"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentLeft="true"
                    android:layout_alignParentTop="true"
                    android:layout_marginLeft="35dp"
                    android:layout_marginTop="24dp"
                    android:text="Product Name"
                    android:textAppearance="?android:attr/textAppearanceMedium" />

            </RelativeLayout>

1 个答案:

答案 0 :(得分:0)

在这种简单的情况下,您可以使用ArrayAdapter<String>AdapterViewListView等类的父级。它主要定义View个孩子将由Adapter确定;它不是Adapter本身。