これは、XML ファイルの blog.xml です。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:id="@+id/info"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#FFFFFF">
</LinearLayout>
.java ファイル
super.onCreate(savedInstanceState);
setContentView(R.layout.blog);
View linearLayout = findViewById(R.id.info);
TextView valueTV = new TextView(this);
valueTV.setText("hallo");
valueTV.setId(5);
valueTV.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT));
((LinearLayout) linearLayout).addView(valueTV);
}
ここでは、アクティビティ全体を白くする必要があります。しかし、このプログラムをコンパイルしている間、書かれたテキストの背景が白くなります。つまり、「ハロー」という単語の背景が白くなります。
助けてください。