0
我想知道如何在XML文件中像字符串一樣編寫數學公式,然後在TextView中顯示它們。例如。像那些公式幾乎可以忽略的幾何公式。xml字符串中的數學公式
另外;
我有一個問題在單行文本框中。
這是我在LinearLayout中的TextView。
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/some" >
</TextView>
和虛擬Android設備我只得到像50個字符。我曾嘗試使用:
android:singleLine="true"
android:ellipsize="end"
android:maxLines="1"
下面是我想:讓文字更小,如果它需要和適合在一行中進行篩選而不會丟失任何字符。