我搜索了互联网无济于事。我正在尝试为 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);
}
谢谢!