gpt4 book ai didi

android - 如何将 textView 膨胀为布局

转载 作者:行者123 更新时间:2023-11-29 20:59:58 27 4
gpt4 key购买 nike

我一直在尝试膨胀下面的 xml 文件,但运气不好,请指出正确的方向。我需要膨胀,然后将其添加到我的数组适配器中。

        TextView footerView = null;
View row = null;



if (null == footerView) {

LayoutInflater inflater = getLayoutInflater();
row = inflater.inflate(R.layout.footer_view,null);
footerView = (TextView)row.findViewById(R.id.footerView);
setContentView(footerView);


return;
}


getListView().addFooterView(footerView);


<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/footerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="@string/add_new_todo_item_string"
android:textSize="24sp" >

</TextView>

最佳答案

已解决以下代码有效并解决了我的问题

LayoutInflater inflater = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View row = inflater.inflate(R.layout.footer_view, getListView(), false);
footerView = (TextView) row.findViewById(R.id.footerView);

// TODO - Add footerView to ListView

getListView().addFooterView(footerView);

关于android - 如何将 textView 膨胀为布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26433312/

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