我的代码xml
<RelativeLayout
android:id="@+id/listitem"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="0dp">
<com.google.android.material.imageview.ShapeableImageView
android:id="@+id/listImage"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:scaleType="centerCrop"
android:src="@drawable/one"
app:shapeAppearanceOverlay="@style/roundImage" />
<TextView
android:id="@+id/listName"
android:layout_width="120dp"
android:layout_height="30dp"
android:layout_marginStart="30dp"
android:layout_marginTop="25dp"
android:layout_toEndOf="@id/listImage"
android:text="@string/textbook1"
android:textSize="20sp"
android:visibility="visible"
tools:ignore="TextSizeCheck" />
</RelativeLayout>
字符串
我的代号kt
import android.os.Bundle
import android.widget.TextView
import androidx.appcompat.app.AppCompatActivity
class book1sem : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.book1sem)
val myTextView = findViewById<TextView>(R.id.listName)
myTextView.setText(R.string.textbook1)
}
}
型
我的代码strings.xml
<string name="textbook1">Глава 1: </string>
型
我的代码AndroidManifest.xml
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Zol"
tools:targetApi="31">
<activity
android:name=".test2"
android:exported="false" />
<activity
android:name=".test1"
android:exported="false" />
<activity
android:name=".lab2"
android:exported="false" />
<activity
android:name=".lab1"
android:exported="false" />
<activity
android:name=".book2sem"
android:exported="false" />
<activity
android:name=".book1sem"
android:exported="false" />
<activity
android:name=".MainActivity"
android:exported="true"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
型
在我的应用程序中还有其他的TextView,它们也没有显示。我已经尝试了好几天来寻找解决这个问题的方法,我已经多次更改代码,也没有结果。在创建应用程序时,我使用了一个现成的模板“底部导航视图活动”,然后添加了一个“按钮”去一个新的窗口(这是book1sem)。使用“空视图活动”模板,在“TextView”中显示文本没有问题。我想继续在“较低导航视图的操作”模板中工作,是否可以使用具有正确“TextView”显示的模板?我将非常感谢您的帮助。
1条答案
按热度按时间oalqel3c1#
正如我所看到的,你的类名是“book 1 sem”,它取代了“MainActivity”!你在Manifest文件中定义了这个类作为你的Activity吗?我运行了你的代码,而不是你的类名,我使用了默认的MainActivity,你的代码很好!
个字符