字符串在android和eclipse控制台中显示不同

时间:2014-02-11 21:46:08

标签: java android eclipse

我是Android新手,所以请不要太苛刻,

我正在编写一个只在android模拟器屏幕上显示三角形的应用程序,我编写了一个Triangle类并在eclipse控制台中测试了这张图片!并且它显示得很完美,但是当我在模拟器中启动时,我的三角形关闭了!

console android emulator

我尝试过使用各种布局,但似乎没有解决问题的方法。 请帮忙

布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
    android:id="@+id/text1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />

活动类

    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    TextView text = (TextView) this.findViewById(R.id.text1);

    Triangle triangle = null;
    try {
        triangle = new Triangle (20);
    } catch (Exception e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    text.setText(triangle.toString());
   // text.setText("HERE SHOULD BE A TRIANGLE");


}

1 个答案:

答案 0 :(得分:2)

解决方案是可以使用等宽字体和比例字体。在我的情况下,它必须改为monospased。下面的代码中的解决方案

 <TextView
    android:id="@+id/text1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:typeface="monospace"
    android:text="@string/hello_world" 
    />