在layout.xml文件中显示字符串的最佳方法

时间:2014-11-26 19:37:52

标签: android android-layout android-studio

我正在使用Android Studio开发应用。在Android Studio中,我使用GUI编辑器中的内置设计应用程序的界面。我正在寻找一种在布局中显示“假”字符串值的方法,以便我检查界面是否正确。但是,我不希望这些“假”字符串出现在应用程序版本中。在应用程序构建(调试/发布)中,我希望编辑文本字段为空,“假”字符串不应该是构建的一部分。 实现这一目标的最佳方法是什么?还是有更好的工作方式?

2 个答案:

答案 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)

试试这个对我有用

String mess = getResources().getString(R.string.mess_1);

有关string resources的更多信息。