如何在Android Studio中切换到显示的UI并更改字体颜色?

时间:2015-06-30 09:02:13

标签: android-studio

我使用Android Studio编写我的应用程序,以下代码是我的布局文件,但有时Android Studio编辑器显示A.png并且有时显示B.png,这意味着有时系统会用真实替换android:text="@string/myabout"字符串“关于”,但我不知道如何切换到UI。

此外,如何更改android:text="@string/myabout"android:text="Hard Code"的代码颜色?你知道File->设置 - >编辑是巨树,我找不到我要编辑的项目。

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/border_ui"
    android:orientation="vertical" >

     <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/myabout"
      />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hard Code"
     />

</RelativeLayout>

A.png

enter image description here

B.png enter image description here

1 个答案:

答案 0 :(得分:0)

设置 - &gt; 编辑 - &gt; 颜色&amp;字体 - &gt; XML - &gt; 属性值。然后你可以设置粗体斜体前景背景等等。

但你为什么要那样做?这有关系吗?