2

我搜索了互联网无济于事。我正在尝试为 textview 设置字体。它位于我的 main.xml 文件中自己的 LinearLayout 中。当我在 OnCreate 中编写代码时,它没有找到 id 或父线性布局。这是代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/background"
    android:orientation="vertical"
    android:weightSum="10.0" >

    <LinearLayout
        android:id="@+id/map_message_layout"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1.0"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/map_message"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="15dp"
            android:layout_marginRight="15dp"
            android:layout_marginTop="10dp"
            android:gravity="center_horizontal"
            android:text="@string/diagram" />

    </LinearLayout>

以及以下 onCreate 方法:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    LinearLayout = (LinearLayout) this.findViewById(R.id.map_message_layout)
    TextView maptxt = (TextView) findViewById(R.id.map_message);
    Typeface typeFace = Typeface.createFromAsset(getAssets(),"fonts/MuseoSans_100.otf");
    maptxt.setTypeface(typeFace);
}

谢谢!

4

1 回答 1

2

你试过清理你的程序吗?我之前发生过一些奇怪的事情,这解决了我的问题。不确定是否属于这种情况。

于 2012-06-25T17:42:25.673 回答