1
私はTextViewで線形レイアウトにプログラムで追加します。私は背景画像を見ることができますが、何らかの理由でテキストが表示されることはありません。何か案は?コードは次のとおりです。TextViewにプログラムでテキストを追加しないでください
TextView pointsTV = new TextView(getApplicationContext());
pointsTV.setText("Test Should Show");
pointsTV.setGravity(Gravity.CENTER);
pointsTV.setTextColor(android.R.color.white);
pointsTV.setPadding(0, 20, 0, 20);
pointsTV.setBackgroundResource(R.drawable.gamesummary_bottom);
pointsTV.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT));
ll.addView(pointsTV);
これでした。 pointsTV.setTextColor(ColorStateList.valueOf(Color.WHITE));ありがとうございました! – Graeme