我有一个主要的活动,如:
public class TestActivity extends Activity{
List<String> users;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.usersview);
showList();
}
private void showList() {
users=new ArrayList<String>();
users.add("User1");
users.add("User2");
users.add("User3");
ListView lv=(ListView)findViewById(R.id.listv);
// TextView tv=(TextView)findViewById(R.id.welcomeMsg);
// lv.addHeaderView(tv);
lv.setAdapter( new ListArrAdapter(this, R.layout.userlist, users));
}
ArrayAdapter:
public class ListArrAdapter extends ArrayAdapter<String> {
private List<String> users;
private Context context;
private int listlayout;
public ListArrAdapter(Context context, int textViewResourceId,
List<String> users) {
super(context, textViewResourceId, users);
this.users = users;
listlayout = textViewResourceId;
this.context = context;
}
@Override
public View getView(int position, View convertView, ViewGroup viewGroup) {
String userName = users.get(position);
if (null == convertView) {
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(listlayout, null);
}
TextView firstName = (TextView) convertView
.findViewById(R.id.firstNameTv);
firstName.setText(userName);
return convertView;
}
}
用户视图布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:text="@string/header"
android:id="@+id/welcomeMsg"
android:textSize="30dp"
android:layout_width="match_parent"
android:layout_height="match_parent"></TextView>
<ListView
android:layout_height="wrap_content"
android:id="@+id/listv"
android:layout_width="match_parent"></ListView>
</LinearLayout>
每个项目的用户列表布局:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#EEFFEE"
android:orientation="vertical">
<TextView
android:id="@+id/firstNameTv"
android:textSize="20dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"></TextView>
</LinearLayout>
我的问题是:
当我运行此代码时,仅显示欢迎消息(不显示列表中的项目)。
当我取消注释行
时 TextView tv=(TextView)findViewById(R.id.welcomeMsg);
lv.addHeaderView(tv);
在TestActivity中,我得到以下异常
09-16 19:45:10.680: ERROR/AndroidRuntime(31044): Caused by: java.lang.ClassCastException: android.widget.LinearLayout$LayoutParams
在行
lv.setAdapter( new ListArrAdapter(this, R.layout.userlist, users));
我想在顶部显示带有消息标题的用户列表。但我遇到了这些问题。问题出在哪里,解决方案是什么。
答案 0 :(得分:1)
在您的用户视图布局中 -
<TextView
android:text="@string/header"
android:id="@+id/welcomeMsg"
android:textSize="30dp"
android:layout_width="match_parent"
android:layout_height="match_parent"></TextView>
将布局更改为wrap_content。
我的猜测是textview正在覆盖整个屏幕。因此列表仍然不可见。
为列表视图添加标题 -
TextView tv = new TextView(this);
tv.setText("Header Text");
listView.addHeaderView(tv);
答案 1 :(得分:0)
参考。
它使用带有Icon,Textview的ListAdaptor。您可以理解无法获得预期输出的原因。
答案 2 :(得分:0)
这对我有用。希望它有所帮助。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
>
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_gravity="top"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
>
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="top"
android:layout_marginTop="50dp"
/>
</LinearLayout>
</FrameLayout>