【发布时间】:2026-02-20 17:45:02
【问题描述】:
我想在我的 Android 应用程序中使用 Font Awesome 图标,但我担心 Font Awesome 图标无法响应所有屏幕尺寸。那么如何使它们适合所有屏幕尺寸并响应
这是我的图标文本示例
在activity_main.xml
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text=""
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:id="@+id/tvIcon1"
android:textSize="500sp"
/>
在MainActivity
Typeface typeface = ResourcesCompat.getFont(this, R.font.fa_regular_400);
tvIcon1.setTypeface(typeface);
【问题讨论】:
标签: android font-awesome screen-size