当前位置: 代码迷 >> Android >> 再问一个 Android SDK Sample 中的有关问题
  详细解决方案

再问一个 Android SDK Sample 中的有关问题

热度:296   发布时间:2016-05-01 21:53:36.0
再问一个 Android SDK Sample 中的问题
在 App/Activity/Hello World 这个例子中,
大家有没注意到最终显示效果中的 World! 这一个单词是斜体显示的,但是倒底是哪一行代码的作用我一直没找到,
这儿没有:
  @Override
protected void onCreate(Bundle savedInstanceState)
  {
  // Be sure to call the super class.
  super.onCreate(savedInstanceState);

  // See assets/res/any/layout/hello_world.xml for this
  // view layout definition, which is being set here as
  // the content of our screen.
  setContentView(R.layout.hello_world);
  }
R.layout.hello_world.xml 中也没有相关设置:
<TextView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/text"
  android:layout_width="match_parent" android:layout_height="match_parent"
  android:gravity="center_vertical|center_horizontal"
  android:text="@string/hello_world"/>

AndroidManifest.xml 中也没有设置theme:
  <activity android:name=".app.HelloWorld" android:label="@string/activity_hello_world">
  <intent-filter>
  <action android:name="android.intent.action.MAIN" />
  <category android:name="android.intent.category.SAMPLE_CODE" />
  </intent-filter>
  </activity>

所以这个斜体究竟是如何出来的呢...请帮忙看一下,谢谢了.

------解决方案--------------------
  相关解决方案