Android добавляет linearLayout в tableRow программно - PullRequest
3 голосов
/ 25 февраля 2011

Я заполняю tableLayout программно. Я хочу, чтобы мой ряд был таким

<TableRow android:id="@+id/tableRow1"
                        android:layout_width="wrap_content" android:layout_height="wrap_content">
                        <ImageView android:src="@drawable/icon" android:id="@+id/imageView1"
                            android:layout_height="wrap_content" android:layout_width="wrap_content"></ImageView>
                        <LinearLayout android:id="@+id/linearLayout2"
                            android:layout_width="wrap_content" android:layout_height="wrap_content"
                            android:orientation="vertical">
                            <TextView android:id="@+id/textView2" android:text="TextView"
                                android:layout_height="wrap_content" android:layout_width="wrap_content"></TextView>
                            <TextView android:text="TextView" android:id="@+id/textView1"
                                android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
                        </LinearLayout>
                        <Button android:text="Button" android:id="@+id/button1"
                            android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
                    </TableRow>

Я пробовал это по коду, делая это

TableRow row = new TableRow(activity);
      row.setGravity(Gravity.CENTER);
      row.setLayoutParams(new TableRow.LayoutParams(TableRow.LayoutParams.WRAP_CONTENT,TableRow.LayoutParams.WRAP_CONTENT));


      image.setPadding(10, 10, 10, 10);       
      ((LinearLayout) image).setGravity(Gravity.LEFT);
      row.addView(image);

      LinearLayout main = new LinearLayout(row.getContext());
     main.setLayoutParams(new LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT));
      main.setOrientation(LinearLayout.VERTICAL);


      TextView nameView = new TextView(activity);

      if(name.length() > 22)
          nameView.setText(name.substring(0, 22)+"...");
      else
          nameView.setText(name);

      nameView.setPadding(10, 10, 10, 10);
      nameView.setTextColor(Color.parseColor("#83be56"));
      nameView.setTypeface(null,Typeface.BOLD);
      nameView.setLayoutParams(new LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT));

      main.addView(nameView,new LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT));

      row.addView(main);

      bt.setText("Respond");
      bt.setPadding(10,10,10,10);
      bt.setGravity(Gravity.CENTER);

      row.addView(bt);

Но линейное расположение не появляется в ряду. Где я иду не так? спасибо

Ответы [ 3 ]

1 голос
/ 28 ноября 2011

Вы можете взглянуть на этот SO-ответ , который объясняет, как вы можете программно создать TableRow, надувая его из частичного 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"
  style="@style/tr_withborder" />
  • Динамически раздувать частичное с помощью кода:
TableRow tr = (TableRow) getLayoutInflater().inflate(R.layout.partial_table_row, null);
0 голосов
/ 31 октября 2018
I would do something like this if I know the how many layouts i need to add.

    TableRow tableRow ;

    tableRow = findViewById(R.id.tableRow1);

    //Adding 2 LinearLayout 
    for (int i = 1; i <= 2; i++) {
        LinearLayout linearLayout= new LinearLayout (this);
        tableRow.addView(linearLayout);
    } 
0 голосов
/ 02 апреля 2012

Вот как я добавляю TableRows к макету таблицы программным способом. Каждый вопрос View на самом деле является файлом XML, независимым от фрагмента, в который он помещен. Этот фрагмент имеет Tablelayout questionContainer, который берет каждый новый вопрос и добавляет его в конец (questionContainer находится в виде прокрутки):

public class EconFragment extends SherlockFragment {

private TableLayout questionContainer;
int pos = 0;
private String[] titles = {"The first title ", "hallo1","hallo2", "hallo3",
        "hallo4", "hallo5","hallo6", "hallo7","hallo8", "hallo9"};

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    Log.v("Econ", "onCreateView");
    View v = inflater.inflate(R.layout.econfragment, container, false);
    questionContainer = (TableLayout) v.findViewById(R.id.questionContainer);
    //bs
    int leftMargin=5;
    int topMargin=5;
    int rightMargin=5;
    int bottomMargin=5;
    while (pos < 10) {
    View question = inflater.inflate(R.layout.question, null);
    question.setId(pos);
    TextView title = (TextView) question.findViewById(R.id.questionTextView);
    title.setText(titles[pos]);
    Button charts = (Button) question.findViewById(R.id.chartsButton);
    charts.setId(pos);
    charts.setOnClickListener(chartsListener);
    TableRow tr = (TableRow) question;
    TableLayout.LayoutParams trParams = new TableLayout.LayoutParams(
            TableLayout.LayoutParams.MATCH_PARENT,
            TableLayout.LayoutParams.WRAP_CONTENT);
    trParams.setMargins(leftMargin, topMargin, rightMargin, bottomMargin);
    tr.setLayoutParams(trParams);
    Log.v("econ", "while loop");
    questionContainer.addView(tr);
    pos++;
    }
    pos = 0;
    return v;
}
...