gpt4 book ai didi

android - findViewById - 嵌套的 LinearLayouts,找不到我的 ID - Android

转载 作者:行者123 更新时间:2023-11-29 00:38:24 36 4
gpt4 key购买 nike

我在互联网上搜索无果。我正在尝试为 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);
}

谢谢!

最佳答案

您是否尝试过清理您的程序?我之前发生了一些奇怪的事情,这解决了我的问题。不确定在这种情况下是否如此。

关于android - findViewById - 嵌套的 LinearLayouts,找不到我的 ID - Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11194375/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com