我使用AmazinListView来显示我的列表。在标题部分我想要两个textview而不是一个textview。所以我在标题中使用了线性布局而不是textview。但log cat表示线性布局无法转换为textview。怎么解决? 在我的代码下面:
@Override
protected void bindSectionHeader(View view, int position,
boolean displaySectionHeader) {
System.out.println("inside bindSectionHeader");
// TODO Auto-generated method stub
// TODO Auto-generated method stub
if (displaySectionHeader) {
view.findViewById(R.id.header).setVisibility(View.VISIBLE);
TextView lSectionTitle = (TextView) view.findViewById(R.id.header);
lSectionTitle.setText(getSections()[getSectionForPosition(position)]);
} else {
view.findViewById(R.id.header).setVisibility(View.GONE);
}
}
@Override
public void configurePinnedHeader(View header, int position, int alpha) {
// TODO Auto-generated method stub
System.out.println("inside configurePinnedheader");
TextView lSectionHeader = (TextView)header;
lSectionHeader.setText(getSections()[getSectionForPosition(position)]);
lSectionHeader.setBackgroundColor(alpha << 24 | (0xbbffbb));
lSectionHeader.setTextColor(alpha << 24 | (0x000000));
/*LinearLayout headerLayout = (LinearLayout)header ;
headerLayout.setBackgroundColor(alpha << 24 | (0xbbffbb));
TextView headerTextView = (TextView)header.findViewById(R.id.header);
headerTextView.setText(getSections()[getSectionForPosition(position)]);*/
}
我的header.xml是:
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:background="#bfb"
android:padding="6dp"
android:text="Header"
android:textColor="#000"
android:textStyle="bold" />
这里我想使用线性布局而不是文本视图。所以我可以使用两个textview。
这是我想要使用的线性布局而不是textview
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="6dp"
android:id="@+id/ll_header1"
android:weightSum="100">
<TextView
android:id="@+id/tv_header"
android:layout_width="0dp"
android:layout_weight="80"
android:layout_height="wrap_content"
android:text="Header"
android:textColor="#000"
android:textStyle="bold" />
<TextView
android:id="@+id/tv_percent"
android:layout_width="0dp"
android:layout_weight="20"
android:layout_height="wrap_content"
android:text="20%" />
答案 0 :(得分:1)
如果您想在布局中使用LinearLayout
而不是TextView
。
在方法configurePinnedHeader()
中,您不应仅仅将header
投射到TextView
。
您可以使用以下代码:
public void configurePinnedHeader(View header, int position, int alpha) {
TextView tv1 = (TextView)header.findViewById(R.id.your_text_view_id);
}
在方法bindSectionHeader
中,您应该将LinearLayout
设置为可见或已消失,并将设置文本设置为TextView。