如何使斜体TextView在Eclipse图形布局视图中工作?它甚至挂起了电脑

时间:2012-02-16 12:06:36

标签: android eclipse fonts textview typeface

在Eclipse中工作,我试图将一些斜体文本放到布局上。问题是,当我设置时 android:textStyle="italic",文字消失了。 (内容的高度变为0,整个TextView变得不可见。)粗体工作正常。我尝试了每种字体,但结果是一样的。

在设备上,它以斜体显示。但是布局非常复杂,而且没有看到它的设计也变得非常复杂。

这是TextView

     <TextView
          android:id="@+id/smallEpgNextProgramTime"
          android:layout_width="200dp"
          android:layout_height="wrap_content"
          android:maxLines="1"
          android:ellipsize="end"
          android:layout_margin="10dp"
          android:gravity="left|top"
          android:textSize="35dp"
          android:typeface="monospace"
          android:textStyle="italic"
          android:text="12:00-13:11"
    />      

Android版本是2.3.3。 Eclipse版本是2.6。

情况更糟。如果我在那里留下斜体,在布局视图更改为图形和返回文本之后,Eclipse工作得越来越慢,并且挂起了PC。所以,我必须在布局中将其设置为“normal”并通过代码设置textStyle。这是一个糟糕的错误!

3 个答案:

答案 0 :(得分:6)

我认为这是一个Android平台问题。

查看Issue 22867: Incorrect layout preview when ITALIC text style used

它不会显示在布局的图形表示上,但在构建和运行应用程序时可以正常工作。

<强>更新 如果要预览设计xml布局,请使用

android:typeface="serif"

在此android:textStyle="italic"作品中。文本将在图形布局编辑器中以斜体显示。

它仅适用于此衬线字体

答案 1 :(得分:1)

 you can use this 

 TextView txtView;
 txtView=(TextView)findViewById(R.id.smallEpgNextProgramTime);
 txtView.setText(Html.fromHtml("Restaurant <i><b>Hello</b></i>"));

答案 2 :(得分:1)

如果你想用代码编写,你写的是100%正确的。

            textView.setTypeface(null, Typeface.ITALIC);
            textView.setText(editText.getText().toString());