web-dev-qa-db-ja.com

テーブル行のアイテムを整列する方法(左-中央-右)

テーブルの行(左/中央/右の位置)のアイテムを整列させようとしていますが、ドットで機能させることができます。

テーブル行

textview1 =左に揃える必要がありますtextview2 =中央imgview1 =右

テーブル行のxml

<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:layout_width="fill_parent"
    Android:layout_height="wrap_content">


    <TextView
        Android:id="@+id/focast_day"
        Android:layout_width="wrap_content"
        Android:layout_height="fill_parent"
        Android:gravity="left"
        Android:ellipsize="end"
        Android:maxLines="1"
        Android:scrollHorizontally="false"
        Android:singleLine="true"
        Android:text="@string/na_msg"
        Android:textColor="@color/black"
        Android:textSize="18sp"
        Android:textStyle="bold" />


     <TextView
        Android:id="@+id/focast_day_temp"
        Android:layout_width="wrap_content"
        Android:layout_height="fill_parent"
        Android:gravity="center"
        Android:ellipsize="end"
        Android:maxLines="1"
        Android:scrollHorizontally="false"
        Android:singleLine="true"
        Android:text="@string/na_msg"
        Android:textColor="@color/black"
        Android:textSize="18sp"
        Android:textStyle="bold" />

    <ImageView
        Android:id="@+id/focast_day_skyIcon"
        Android:layout_width="wrap_content"
        Android:layout_height="fill_parent"
        Android:gravity="right"
        Android:scrollHorizontally="false" />

</TableRow>

myTableLayout

        <TableLayout
            Android:id="@+id/weatherforcastTable"
            Android:layout_width="fill_parent"
            Android:stretchColumns="2"
            Android:layout_height="wrap_content"
            Android:layout_below="@+id/today_temp"
            Android:layout_centerHorizontal="true"
            Android:layout_marginTop="34dp" >
        </TableLayout>

テーブル行にデータを入力するためのコード

 for (Forecastday forecastday : forcastDayList) {


                        View view = inflater.inflate(R.layout.weather_forcast_day_view, null);
                        TextView focast_day = (TextView) view.findViewById(R.id.focast_day);
                        TextView focast_day_temp = (TextView) view.findViewById(R.id.focast_day_temp);
                        ImageView  focast_day_skyIcon = (ImageView) view.findViewById(R.id.focast_day_skyIcon);

                        TableRow row = new TableRow(_appContext);
                        focast_day.setText(fmtDate);


                        focast_day_temp.setText(forecastday.getHigh().getCelsius() +ApplicationConstants.STRING_SPACE +ApplicationConstants.CELSIUS_DEGREES);
                        focast_day_temp.setId(count);


                        focast_day_skyIcon.setImageBitmap(forecastday.getSkyiconBitMap());


                        row.addView(view);
                        weatherforcastTable.addView(row, new TableLayout.LayoutParams(LayoutParams.WRAP_CONTENT,
                                LayoutParams.WRAP_CONTENT));
                    }
10
Sam

TableLayoutでこれを試してみてください:stretchColumns = "0,1,2"

<TableLayout
        Android:id="@+id/weatherforcastTable"
        Android:layout_width="fill_parent"
        Android:stretchColumns="0,1,2"
        Android:layout_height="wrap_content"
        Android:layout_below="@+id/today_temp"
        Android:layout_centerHorizontal="true"
        Android:layout_marginTop="34dp" >
</TableLayout>
23
lokoko

行のxmlレイアウトの最初と最後の列で「gravity」の代わりに「layout_gravity」を使用してみましたか?これにより、forecast_dayを親テーブルの左側に、forecast_day_skyIconを右側に揃えることで、問題が解決する場合があります。

これが重力とlayout_gravityの優れた視覚化です

http://sandipchitale.blogspot.com/2010/05/linearlayout-gravity-and-layoutgravity.html

4
frenziedherring

これは私のために働いた。

<TableRow 
    Android:layout_width="fill_parent"
    Android:layout_height="wrap_content"
    Android:gravity="center">

それが役に立てば幸い。

3