件名を教えてください。ListView (LItem := ListView.Items.Add) にアイテムを追加できますが、ヘッダーとフッターを追加するにはどうすればよいですか? デルファイXE5で!JAVAではありません。
質問する
3483 次
3 に答える
4
LItem := ListView.Items.Add; LItem.Purpose:=TListItemPurpose.Footer;
于 2013-12-04T04:41:33.997 に答える
1
私も以前にこの問題に遭遇しました。私のコンポーネントでは、Listview にプルダウンを追加してリフレッシュ機能を追加したいと考えています。私がしたことは、xml レイアウト ファイルでビュー レイアウトを宣言した後、ListView サブクラスで次のコードを使用することです。
this.addHeaderView(headerRelativeLayout, null, false); //this is the ListView sub class
これが私のコード全体です:
private void init(Context context) {
inflater = LayoutInflater.from(context);
headerRelativeLayout = (RelativeLayout)inflate(context, R.layout.refresh_header_view, null);
arrowImage = (ImageView)headerRelativeLayout.findViewById(R.id.head_arrowImageView);
progressBar = (ProgressBar)headerRelativeLayout.findViewById(R.id.head_progressBar);
headerTextView = (TextView)headerRelativeLayout.findViewById(R.id.head_tipsTextView);
lastUpdateDateTextView = (TextView)headerRelativeLayout.findViewById(R.id.head_lastUpdatedDateTextView);
headerRelativeLayout.setPadding(0, -1 * HEADER_HEIGHT, 0, 0);
this.addHeaderView(headerRelativeLayout, null, false);
}
詳細については、これを確認できます: ListView Android の例でドラッグして更新
于 2013-10-20T04:39:59.110 に答える
0
これを試して
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="bottom|top"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@color/background_bottom_bar"
>
<TextView
android:text="Header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
<GridView
android:id="@+id/gridview_practioner"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:columnWidth="90dp"
android:horizontalSpacing="10dp"
android:numColumns="5"
android:layout_weight="1"
android:stretchMode="columnWidth"
android:verticalSpacing="10dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:text="Footer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/background_bottom_bar"
android:layout_gravity="bottom"/>
</LinearLayout>
</LinearLayout>
ノート :
ここで listview または gridview を使用している場合は、listview または gridview の重み =1 を指定する必要があります。
于 2014-06-19T10:08:40.517 に答える