gpt4 book ai didi

android - 为 ListView android 格式化 "empty list"文本

转载 作者:行者123 更新时间:2023-11-29 21:45:22 26 4
gpt4 key购买 nike

如何在 Android ListView 中设置列​​表为空时显示的文本的格式?

<ListView
android:id="@+id/android:list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent"
android:cacheColorHint="@android:color/transparent"
android:dividerHeight="1dip" />

<TextView
android:id="@+id/android:empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test_list"
android:textColor="@color/white"
android:textSize="25sp"
/>

我想将字体设置为 Assets 中的字体..

mTypeFace = Typeface.createFromAsset(context.getAssets(), "fonts/myFont.ttf");
mEmptyTextView = (TextView)findViewById(**????**)
mEmptyTextView.setTypeface(mTypeFace);

最佳答案

您需要使用 android.R.id.empty 来初始化 mEmptyTextView。试试看:

mTypeFace = Typeface.createFromAsset(context.getAssets(), "fonts/myFont.ttf");
mEmptyTextView = (TextView)findViewById(android.R.id.empty);
mEmptyTextView.setTypeface(mTypeFace);

关于android - 为 ListView android 格式化 "empty list"文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15979085/

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