У меня есть TableLayout с динамически добавленными ячейками. К сожалению, ячейки не отображаются (вся динамически добавленная часть, кажется, не существует при отображении макета).android TableLayout с динамически добавленными ячейками - ничего не отображается
Первая часть моего определения макета:
<TableLayout
android:id="@+id/main_activity_details_calendar_main_grid"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
Теперь одна ячейка определение XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="1"
>
<TextView
android:id="@+id/main_activity_details_calendar_item_text_date"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:maxLines="1"
android:gravity="left"
/>
<TextView
android:id="@+id/main_activity_details_calendar_item_text_counter"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:maxLines="1"
android:gravity="right"
/>
</LinearLayout>
Сейчас в моем коде я:
public class MainActivity
.....
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
......
calendar.onCreateView(view, inflater, container);
.....
return view;
}
protected class Calendar { //this is inner class
protected TableLayout calendarMainGrid;
public final static int NUMBER_OF_WEEKS = 2;
public final static int NUMBER_OF_DAYS_IN_WEEK=7;
public void onCreateView (View view, LayoutInflater inflater, ViewGroup container) {
calendarMainGrid = (TableLayout) view.findViewById(R.id.main_activity_details_calendar_main_grid);
for (int i=0; i<=NUMBER_OF_WEEKS; i++) { //we have <= as first row will be used for displaying the names of days
TableRow newRow = new TableRow(calendarMainGrid.getContext());
newRow.setLayoutParams (new TableRow.LayoutParams(android.widget.TableRow.LayoutParams.WRAP_CONTENT,
android.widget.TableRow.LayoutParams.WRAP_CONTENT));
for (int j=0; j<NUMBER_OF_DAYS_IN_WEEK; j++) {
View cell = inflater.inflate(R.layout.main_activity_details_calendar_item, container, false);
TextView t1 = (TextView) cell.findViewById(R.id.main_activity_details_calendar_item_text_date);
TextView t2 = (TextView) cell.findViewById(R.id.main_activity_details_calendar_item_text_counter);
t1.setText(i*NUMBER_OF_DAYS_IN_WEEK+j);
t2.setText(i*NUMBER_OF_DAYS_IN_WEEK+j);
newRow.addView(cell);
}
calendarMainGrid.addView(newRow, new TableLayout.LayoutParams(android.widget.TableLayout.LayoutParams.MATCH_PARENT,
android.widget.TableLayout.LayoutParams.WRAP_CONTENT));
}
}
И как я ничего не сказал из TableLayout (отображаются другие статически заданные элементы в XML-файле того же макета).
Кроме того LogCat отображает следующие предупреждения:
01-29 22:03:31.599: W/ResourceType(8561): No package identifier when getting value for resource number 0x00000000
и последующие предупреждения для чисел до 14.
Я был бы признателен за помощь. Заранее спасибо!
Btw, я действительно не понимаю, почему Android не предоставляет какой-либо календарь, готовый с полки, с индивидуальным представлением на одной ячейке ..... Теперь вместо добавления настраиваемого календаря за 5 минут я трачу часы в создании представления календаря из tablelayout (и я также обнаружил, что в моем случае мне не разрешено использовать GridView, поскольку у меня уже есть один ScrollView в моем макете).
Когда я заменяю «цикл j» для (int j = 0; j
user2707175