英文:
How to hide and show the table row with if else statement for android
问题
要隐藏表格,您可以使用以下代码示例:
if (tel != null) {
tableRow9.setVisibility(View.VISIBLE); // 显示表格行
} else {
tableRow9.setVisibility(View.GONE); // 隐藏表格行
}
这将根据tel
是否为null来显示或隐藏名为tableRow9
的表格行。
英文:
How to hide the table
Example:
if tel != null then
show table row
else
hide table row
end if
<TableRow
android:id="@+id/tableRow9"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tvTelH"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:layout_weight="15"
android:text="Tel : "
android:textColor="@color/black"
android:textSize="@dimen/apps_title">
</TextView>
<TextView
android:id="@+id/tvTelD"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="35"
android:ems="15"
android:textColor="@color/black"
android:textSize="@dimen/apps_title">
</TextView>
</TableRow>
I want to hide if empty data how to do it... please
I'm new doing android ...
答案1
得分: 1
请使用以下代码:
TableRow tableRow9 = findViewById(R.id.tableRow9);
然后:
if (tel != null)
tableRow9.setVisibility(View.VISIBLE);
else
tableRow9.setVisibility(View.GONE);
英文:
Use this
TableRow tableRow9 = findViewById(R.id.tableRow9);
and then
if(tel != null)
tableRow9.setVisibility(View. VISIBLE);
else
tableRow9.setVisibility(View.GONE);
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论