我想将图像作为标题添加到ListView。它碰巧工作 - 但图像周围有很多空间,虽然我已经尝试更改填充...它不起作用。
这是我的主要活动
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context=".MainActivity" >
<ListView
android:id="@+id/LV_Home"
android:layout_width="match_parent"
android:layout_height="wrap_content"
></ListView>
</RelativeLayout>
这是我的标题
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView
android:src="@drawable/homeimage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="0dp"
android:paddingBottom="0dp" />
</LinearLayout>
这就是我添加标题的方式:
String[] array = getResources().getStringArray(R.array.entries);
ListView lv = (ListView) findViewById(R.id.LV_Home);
ArrayAdapter<String> aa = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, array);
View header = getLayoutInflater().inflate(R.layout.header_main_menue, null);
lv.addHeaderView(header);
lv.setAdapter(aa);
答案 0 :(得分:1)
你可以这样做:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context=".MainActivity"
>
<ImageView
android:id="@+id/header"
android:src="@drawable/homeimage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="0dp"
android:paddingBottom="0dp"
/>
<ListView
android:id="@+id/LV_Home"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/header"
/>
</RelativeLayout>
并注释掉这些内容:
/*
View header = getLayoutInflater().inflate(R.layout.header_main_menue, null);
lv.addHeaderView(header);
lv.setAdapter(aa);
*/
请注意,现在您只有一个xml而不是两个(标题现在包含在ListView的布局中)