0

XMLからTextViewを作成しているときは、内部のすべてのテキストは黒ですが、コードから作成しているときは灰色です。なんで?

コードとXMLからの要素の場所は同じです。メインのレイアウトはRelativeLayoutです(常にXMLから)。

以下のすべての要素は、1つのケースではXMLから、2番目のケースではコードから作成されます:ScrollView-> TableLayout->TableRow->TextView。

どちらの場合も、すべての階層で、色/スタイル/外観のパラメーターを設定していません。

コード:

RelativeLayout layout = (RelativeLayout) findViewById(R.id.o_layout);
ScrollView sv = new ScrollView(getApplicationContext());
TableLayout tl = new TableLayout(getApplicationContext());
float density = getResources().getDisplayMetrics().density;
tl.setPadding((int)(10 * density), (int)(4 * density), (int)(4 * density), 0);
for(String s: lista){
     add_row(tl, s);
}
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.BELOW, R.id.osobowe_search_field);
params.addRule(RelativeLayout.CENTER_HORIZONTAL);
sv.addView(tl);
layout.addView(sv, params);

private void add_row(TableLayout tl, String left_text){
    float density = getResources().getDisplayMetrics().density;

    TableRow tr = new TableRow(getApplicationContext());
    tr.setMinimumHeight((int)(30 * density));
    TableLayout.LayoutParams params = new TableLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    params.bottomMargin = (int)(4 * density);

    TextView left = new TextView(getApplicationContext());
    left.setTextSize(android.util.TypedValue.COMPLEX_UNIT_DIP, 25);
    TableRow.LayoutParams left_params = new TableRow.LayoutParams(TableRow.LayoutParams.WRAP_CONTENT, TableRow.LayoutParams.WRAP_CONTENT);
    left_params.gravity = Gravity.CENTER_VERTICAL;
    left.setText(left_text);

    TextView right = new TextView(getApplicationContext());
    right.setTextSize(android.util.TypedValue.COMPLEX_UNIT_DIP, 18);
    right.setGravity(Gravity.CENTER_VERTICAL);
    TableRow.LayoutParams right_params = new TableRow.LayoutParams(TableRow.LayoutParams.WRAP_CONTENT, TableRow.LayoutParams.WRAP_CONTENT);
    right_params.leftMargin = (int)(10 * density);
    right_params.gravity = Gravity.CENTER_VERTICAL;
    //right_params.setMargins((int)(10 * density), 0, 0, 0);
    right_params.weight = 1;
    right.setText(get_desc("l", left_text));

    View line = new View(getApplicationContext());
    line.setBackgroundResource(R.drawable.line_on_bottom);
    TableLayout.LayoutParams line_params = new TableLayout.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, (int)density);
    line_params.setMargins((int)(20 * density), 0, (int)(20 * density), 0);

    tr.addView(left, left_params);
    tr.addView(right, right_params);
    tl.addView(tr, params);
    tl.addView(line, line_params);


}

XML:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/o_details"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <TableLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="10dip"
        android:paddingRight="4dip"
        android:paddingTop="4dip" >

        <TableRow
            android:id="@+id/o_row01"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:minHeight="30dp"
            android:layout_marginBottom="4dip" >

            <TextView
                android:id="@+id/o_num01"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:text="@string/_"
                android:textSize="25dip"
                />
4

1 に答える 1

1

簡単な回避策の 1 つは次のとおりです -- onResume() メソッドまたは行追加関数 (上記のコード) のいずれかで、(上記の xml に従って) 既知の ID を使用して TextView を取得し、手動で色を黒/に設定します。グレー。関数 setBackgroundColor が役立ちます。

使用法 -

mytextview.setBackgroundColor(getResources().getColor(R.color.darkgrey)); 

(resources/color.xml で 16 進数値を使用して色「darkgrey」を定義した場合)

于 2012-09-09T12:39:11.813 に答える