我有固定寬度和高度的TextView,想要設置字符串"._MealTracker_2-MAR-2012_02-20PM.apk"
但在textview中只顯示"."
無法獲取它。爲什麼它發生?顯示固定大小的字符串TextView
<TextView
android:id="@+id/TextView01"
android:layout_width="60dp"
android:layout_height="20dp"
android:layout_gravity="bottom|center_horizontal"
android:layout_marginBottom="@dimen/bottom_margin"
android:text="._MealTracker_2-MAR-2012_02-20PM.apk"
android:textColor="@color/bgblue" />
你試過setText()嗎?或者將寬度設置爲「wrap_content」? – Swayam
是的,我已經在我的代碼中設置了文本 –
您是否嘗試過setText(「._ MealTracker_2-MAR-2012_02-20PM.apk」)? – Swayam