Android textView bug? sp

时间:2017-01-26 06:39:49

标签: android textview

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");
      }
    });
  }
}

1 个答案:

答案 0 :(得分:0)

由于屏幕密度像素,尝试为值资源文件中的不同屏幕分辨率指定不同的文本大小。请阅读more