我正在尝试制作日历,为此我正在使用表格布局,然后我想定义一个包含 TextViews 的自定义行(布局 xml),以便能够在此处访问数据以及我的表格布局示例:
<TableLayout
android:id="@+id/appointmentListView"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TableRow
android:id="@+id/tableRow1">
<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<TextView
android:id="@+id/unitNul"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="00:00"/>
<CustomRow><\CustomRow> //this is where I imagined I would have to put my custom element
</LinearLayout>
</TableRow>
然后我会根据他们一天中的时间在正确的行中进行约会(通过。切换逻辑)
我的问题是:如何向每个表格行添加自定义元素?这是最好的方法吗?
旁注:我试图制作一个自定义视图元素,但这对我来说似乎有点难以处理。(如果您知道一个很好的指南来解释这一点,这也是一个选择)我已经尝试过:http: //developer.android.com/guide/topics/ui/custom-components.html