0

我想要一个包含徽标的标题。然后是列表视图。但我正在努力让它们都出现在屏幕上。我要么只得到标题,要么只得到 Listview。任何人都可以在这里阐明一下。这是我的文件。

// Grammar_sections.java

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.grammar_sections);
   Intent i = getIntent();

    module_id =i.getStringExtra("module_id");

    TestAdapter mDbHelper = new TestAdapter(getBaseContext());        
    mDbHelper.open();

    ArrayList<String> testdata = mDbHelper.getAllSections(module_id);

    for(String t : testdata )
    {
        //Log.d("out", t.toString());
    }

    mDbHelper.close();


    m_listview = (ListView) findViewById(R.id.list);

    if(m_listview != null)
    {
        Log.i("check","yup");
    }
    else
    {
        Log.i("check","nope");
    }


    ArrayAdapter<String> adapter =
      new ArrayAdapter<String>(this,R.layout.grammar_sections , R.id.list_item, testdata);

     m_listview.setAdapter(adapter);

语法节.xml

  // grammar_sections.xml

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

<!--  Header  Starts-->
    <LinearLayout android:id="@+id/header"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@layout/header_gradient"
            android:paddingTop="5dip"
            android:paddingBottom="5dip">
            <!-- Logo Start-->
            <ImageView android:src="@drawable/logo_icon"
                        android:layout_width="wrap_content"
                        android:layout_height="fill_parent"
                        android:layout_marginLeft="10dip"/>

            <ImageView android:src="@drawable/logo_text"
                        android:layout_width="wrap_content"
                        android:layout_height="fill_parent"
                        android:layout_marginLeft="10dip"/>


            <!-- Logo Ends -->
       </LinearLayout>
   <!--  Header Ends -->



<TextView
    android:id="@+id/list_item"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical"
    android:padding="16dip"
    android:typeface="sans"
    android:textSize="16dip"
    />

    <ListView
    android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:divider="#b5b5b5"
    android:dividerHeight="1dp"
     />

 </RelativeLayout>
4

3 回答 3

0

ListView方法addHeaderView。正如文档所说:

Add a fixed view to appear at the top of the list.

因此,只需创建您的view并通过inflater. 然后将其添加到ListView

于 2012-08-28T11:21:57.363 回答
0

从您的代码中,

 ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,R.layout.grammar_sections , R.id.list_item, testdata);

您将相同的grammar_sections.xml文件传递​​给您的ArrayAdapter。所以我认为这是问题所在,而是制作一个包含列表项的不同 xml 布局文件并将这个 xml 布局文件传递给ArrayAdapter构造函数。

于 2012-08-28T11:22:54.023 回答
0

这是一个有效的示例 xml 代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/background"
    android:orientation="vertical" >

    <include layout="@layout/header" />

    <ListView
        android:id="@+id/listView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:cacheColorHint="@color/white"
        android:choiceMode="singleChoice"
        android:divider="@color/blue_vdark"
        android:dividerHeight="1dp" />

</LinearLayout>

您可以用自定义替换包含,View或者LayoutListView.
尝试将此代码与您的代码进行比较。此外,我没有</RelativeLayout>在您的 xml 文件末尾看到标签。

于 2012-08-28T11:58:42.810 回答