string的用法 以前在写代码时,在布局文件中总是有感叹号的出现 ,现在才发现原来是跟string 的知识点有关啊!总算明白了。 layout布局里面的activity_main.xml
<Button
android:id="@+id/btn_login"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="103dp"
android:layout_marginRight="37dp"
android:text="@string/Login" />
<TextView
android:id="@+id/tv_account"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textView2"
android:layout_marginTop="88dp"
android:text="@string/Account"
android:textAppearance="?
android:attr/textAppearanceMedium" />
<TextView
android:id="@+id/tv_pwd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/btn_login"
android:layout_alignLeft="@+id/textView2"
android:layout_marginBottom="108dp"
android:text="@string/Password"
android:textAppearance="?
android:attr/textAppearanceMedium" />
values里面的strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">TestLogin</string>
<string name="action_settings">Settings</string>
<string name="hello_world">Hello world!</string>
<string name="Account">用户名</string>
<string name="Password">密码</string>
<string name="Login">登陆</string>
<string name="A">ABCDEFG</string>
</resources> - 列表项