私のアプリには、データを含むテーブルを表示するアクティビティがあります。
問題は、テーブルの幅を画面の全幅に調整できないことです。スマートフォンではテーブルの幅がデバイスの幅よりも大きいためスクロールを使用しますが、タブレットではテーブルの幅がデバイスの幅よりも小さいため、全体の幅に合わせたいと考えています。
xmlで次のコードを使用します。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@color/fondo_pantalla" >
<TextView
android:id="@+id/Title"
android:layout_width="fill_parent"
android:layout_height="40dp"
android:layout_alignParentTop="true"
android:text="@string/city_Vld"
android:textColor="@color/blanco"
android:gravity="center"
android:background="@color/color_Vld" />
<TextView
android:id="@+id/Title_O"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/Title"
android:textColor="@color/color_Vld"
android:gravity="center"
android:background="@color/blanco" />
<LinearLayout
android:id="@+id/grafico"
android:layout_width="fill_parent"
android:layout_heightt="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
android:background="@color/black"
android:orientation="vertical"
android:layout_below="@+id/Title_O" />
</RelativeLayout>
次のように、適切なクラスでテーブルを描画する id = grafico の LinearLayout にあります。
@SuppressWarnings("deprecation")
private void pintaTexto(){
ScrollView scvista = new ScrollView(this);
scvista.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
HorizontalScrollView hscvista = new HorizontalScrollView(this);
hscvista.setLayoutParams(new HorizontalScrollView.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
TableLayout tabla = new TableLayout(this);
tabla.setLayoutParams(new TableLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
double numRows = 20;
int numColumns = 4;
// Header of the table
TableRow cabecera = new TableRow(this);
cabecera.setLayoutParams(new TableLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
cabecera.setBackgroundColor(getResources().getColor(R.color.azulOscuro_elvg));
tabla.addView(cabecera);
// Header data
for (int j = 0; j < numColumns; j++) {
TextView textColumna = new TextView(this);
textColumna.setLayoutParams(new TableRow.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
textColumna.setText(json.json4.GetInfo(0, j));
textColumna.setTextColor(getResources().getColor(R.color.blanco));
textColumna.setTextSize(TypedValue.COMPLEX_UNIT_SP, 16);
textColumna.setGravity(Gravity.CENTER_HORIZONTAL);
textColumna.setPadding(5, 5, 5, 5);
cabecera.addView(textColumna);
}
// Data row
for (int f = 0; f < numRows; f++) {
TableRow row = new TableRow(this);
for (int c = 0; c < numColumns; c++) {
TextView textDato = new TextView(this);
textDato.setLayoutParams(new TableRow.LayoutParams(LayoutParams.FILL_PARENT, 60));
textDato.setText(json.json4.GetValue(f, c));
textDato.setTextColor(getResources().getColor(R.color.azulOscuro_elvg));
textDato.setBackgroundColor(getResources().getColor(R.color.blanco));
textDato.setTextSize(TypedValue.COMPLEX_UNIT_SP, 14);
textDato.setGravity(Gravity.CENTER_VERTICAL);
textDato.setPadding(15, 0, 15, 0);
row.addView(textDato);
}
tabla.addView(fila);
}
hscvista.addView(tabla);
scvista.addView(hscvista);
LinearLayout layout = (LinearLayout) findViewById(R.id.grafico);
layout.addView(scvista);
}
すべての要素の幅属性を確認しましたが、私が示したように FILL_PARENT に適合しません。また、この id=grafico の LinearLayout も棒グラフの描画に使用されており、それが画面全体に収まる場合は、xml では何もできないと思います。私に嘘をついた。
あなたが私を助けてくれることを願っています.これは同じメッセージを持つ私の3番目の投稿です.
ありがとう。