我正在使用Android Studio开发应用。在Android Studio中,我使用GUI编辑器中的内置设计应用程序的界面。我正在寻找一种在布局中显示“假”字符串值的方法,以便我检查界面是否正确。但是,我不希望这些“假”字符串出现在应用程序版本中。在应用程序构建(调试/发布)中,我希望编辑文本字段为空,“假”字符串不应该是构建的一部分。 实现这一目标的最佳方法是什么?还是有更好的工作方式?
答案 0 :(得分:2)
这很容易。尝试使用最新的Android Studio:
<RelativeLayout 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">
<TextView
android:id="@+id/appVersion"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:textSize="20sp"
tools:text="Version 1.0"
/>
</RelativeLayout>
AS也会建议你使用正确的XML命名空间。
答案 1 :(得分:0)