Android - 在活动中显示查询结果

时间:2017-07-31 20:26:51

标签: java android sql

我有以这种方式表达的SQL查询结果:

//The column attributes of a result table
ArrayList<String> columns_attributes;
// This contains the data of every row of the result
ArrayList<ArrayList<String>> rows_data;

我怎样才能在活动中进行动态显示?感谢

3 个答案:

答案 0 :(得分:0)

您可以使用这样的简单for循环遍历这些列表:

{{1}}

答案 1 :(得分:0)

MainActivity

    public class MainActivity extends AppCompatActivity {

     List<String> list = new ArrayList<String>();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        list.add("Android");
        list.add("iPhone");
        list.add("Windows");
        list.add("Blackberry");
        list.add("Mac");
        list.add("Laptop");
        list.add("LCD");
        list.add("Dell");

        ArrayAdapter adapter = new ArrayAdapter<String>(MainActivity.this, R.layout.list_view_item, list);
        ListView listView = (ListView) findViewById(R.id.mobile_list);

        listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                Toast.makeText(MainActivity.this, "Clicked: " + list.get(position), Toast.LENGTH_SHORT).show();
            }
        });

        listView.setAdapter(adapter);
    }
}

activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.vzw.www.listviewalert.MainActivity">

    <ListView
        android:id="@+id/mobile_list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</RelativeLayout>

list_view_item.xml

<?xml version="1.0" encoding="utf-8"?>
    <TextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/label"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="10dip"
        android:textSize="16dip"
        android:textStyle="bold" >
    </TextView>

enter image description here

答案 2 :(得分:0)

要显示动态数据量,建议使用ListView来完成工作。如果您只想显示这些字符串,可以使用ListActivity并使用ArrayAdapter方法为该ListView分配setListAdapter()

您可能需要查看本教程才能完成此操作。

http://androidexample.com/Create_Listview_With_ListActivity_-_Android_Example/index.php?view=article_discription&aid=66