android:如何从数据库sqlite中创建列表



我想列出一个包含sqlite数据库中一些用户名的列表。我希望它有白色背景和黑色文本。当我发现每个教程都认为我要使用extends listactivity时,我感到很困难。。。。有什么制作技术吗?这是我在nir.java中的一些代码

setContentView(R.layout.changeplayer);
btnCreateN = (Button)findViewById(R.id.btnCreateNew);
btnCreateN.setOnClickListener(this);
btnSetP = (Button)findViewById(R.id.btnOK);
btnSetP.setOnClickListener(this);
//buat listview
lstUnameView = (ListView)findViewById(R.id.listUsername);
adapter = new ArrayAdapter <String>(this, 
          android.R.layout.simple_list_item_1, lstUname);
lstUnameView.setAdapter(adapter);

//koneksi ke db, ngambil username-username
helper = new sqlite(this, "tamadb", 1);
db1 = helper.getWritableDatabase();
c = db1.rawQuery("SELECT username FROM tama", null);
if(c.moveToFirst())
{
    do
    {
    lstUname.add(c.getString(0));
    }while(c.moveToNext());
}
helper.close();

这是我在布局更改播放器中的代码

<RelativeLayout xmlns:android="schemas.android.com/apk/res/android"; 
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent">
    <ListView android:id="@+id/listUsername" 
          android:layout_width="fill_parent" 
          android:layout_height="350px" 
          android:drawSelectorOnTop="false" 
                  android:background = "#FFFFFFFF" 
                  android:cacheColorHint = "#191919" />
    <Button android:id="@+id/btnCreateNew" 
        android:layout_width="120px"
        android:layout_height="wrap_content" 
        android:text="Create New" 
        android:layout_below="@id/listUsername" 
        android:layout_marginLeft="40px" /> 
    <Button android:id="@+id/btnOK"
        android:layout_width="120px"
        android:layout_height="wrap_content" 
        android:text="OK" 
        android:layout_below="@id/listUsername" 
        android:layout_toRightOf="@id/btnCreateNew" />
</RelativeLayout> 

请帮忙,我也想完成这个项目。。。he9x。。thx之前…^^

如果您希望整个应用程序具有白色背景和黑色文本,则可以将应用程序的主题设置为Theme.Light。因此,您必须将属性android:theme="@android:style/Theme.Light"添加到清单文件的元素中。

这是我为白色背景和黑色文本的列表视图创建的layout.xml。

您需要在res文件夹中将colors list_bg和menu_text分别设置为白色和黑色,然后调用活动中的布局和id。

就填充列表视图而言,这里有一个很好的示例,其中包含可下载的代码:

http://www.youtube.com/watch?v=Awu7Rlsez_k

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" 
android:layout_width="fill_parent"
android:layout_height="wrap_content" 
android:background="@color/list_bg">
<TextView android:background="@color/list_bg"
    android:textColor="@color/menu_text" 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:padding ="10dp"
    android:textSize="22sp"
    android:textStyle="bold" 
    android:id="@+id/row" />
<ListView android:id="@+id/list_view" 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>
</RelativeLayout>

相关内容

  • 没有找到相关文章

最新更新