Android中的TextView是否有最大文字大小?
我的应用程序必须在290sp左右显示一些文本。但是,我发现有些设备无法显示它,整个空白页面显示的是TextView。
在三星Galaxy Note 5(API 23)中,它可以找到。 在Google Nexus 5(API 19)中,最大文本大小为239sp。 在Samsung Galaxy S7(API 23)中,最大文本大小为179sp。
以下是我的演示代码: 布局XML
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.xxx.texttutorial.MainActivity">
<Button
android:id="@+id/buttonPlus"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="+10"/>
<TextView
android:id="@+id/textViewCurrentTextSize"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/buttonPlus"
android:text="130"
android:gravity="center_horizontal"
android:textSize="40sp"
/>
<Button
android:id="@+id/buttonMinus"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/textViewCurrentTextSize"
android:text="-10"
/>
<TextView
android:id="@+id/currentText"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/textViewCurrentTextSize"
android:textSize="130sp"
android:gravity="center"
android:text="X"/>
</RelativeLayout>
MainActivity JAVA
public class MainActivity extends AppCompatActivity {
int textSize = 130;
TextView currentText, textViewCurrentTextSize;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
currentText = (TextView)findViewById(R.id.currentText);
textViewCurrentTextSize = (TextView)findViewById(R.id.textViewCurrentTextSize);
(findViewById(R.id.buttonPlus)).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
textSize += 10;
currentText.setTextSize(TypedValue.COMPLEX_UNIT_SP, textSize);
textViewCurrentTextSize.setText(textSize+"");
}
});
(findViewById(R.id.buttonMinus)).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
textSize -= 10;
currentText.setTextSize(TypedValue.COMPLEX_UNIT_SP, textSize);
textViewCurrentTextSize.setText(textSize+"enter code here");
}
});
}
}