gpt4 book ai didi

java - 如何在 LinearLayout 中实现 ListView?

转载 作者:行者123 更新时间:2023-11-29 03:20:14 24 4
gpt4 key购买 nike

我正在尝试制作一个简单的支票簿应用程序,其 MainActivity 存储交易列表。我想要屏幕顶部和底部的 TextView 分别显示帐户余额和添加新交易的选项。我想要一份该卷轴之间的交易 list 。我能够实现 ListView 并添加页眉和页脚 View ,但如果事务列表超过屏幕大小,页眉和页脚可能会滚出屏幕。

有没有办法在线性布局中定位 ListView,或者卡住页眉/页脚以留在屏幕上?

到目前为止,这是我的 XML 文件:

<TextView
android:id="@+id/header_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/default_header_string">
</TextView>

<ListView
android:id="@+id/transaction_list_view"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</ListView>

<TextView
android:id="@+id/footer_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/add_transaction_string">
</TextView>

这是我的 onCreate,它没有语法错误,但我无法单击页脚 View 来添加事务:

    protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_checkbook);

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

// Create a new Adapter
mAdapter = new TransactionAdapter(list.getContext());

// Inflate footerView and headerView
LayoutInflater inflater = getLayoutInflater();
TextView headerView = (TextView) inflater.inflate(R.layout.header_view, null);
TextView footerView = (TextView) inflater.inflate(R.layout.footer_view, null);

// Set listener for footerView
footerView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
Intent transactionIntent = new Intent(CheckbookActivity.this, AddTransactionActivity.class);
startActivityForResult(transactionIntent, ADD_TRANSACTION_REQUEST);
}
});

list.setAdapter(mAdapter);
}

最佳答案

使用下面的代码。这将满足您的要求。我试过这个并为我工作。具有 below,above 属性的相对布局。相对布局优于使用权重方法的线性布局。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/relative"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent" >

<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentTop="true"
android:gravity="center_horizontal"
android:text="ListView Heading" />

<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:gravity="center_horizontal"
android:text="ListView Footer" />

<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/textView1"
android:layout_above="@id/textView2"

></ListView>

UI会像这样

enter image description here

关于java - 如何在 LinearLayout 中实现 ListView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24113652/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com