Noob在这里,我想删除应用程序的多个标题(?)(附带截图)。 蓝色的一个默认出现,我能够删除一次,但现在我不知道是怎么做到的。当我删除蓝色的那个时,我根据自己的喜好定制了一个。 我想知道这种情况下的最佳做法,以及如何做到。 我想要标题(应用程序标题)上的应用程序的徽标以及名称。我怎么能这样做?
答案 0 :(得分:0)
blue one
实际上是ActionBar
或现在您可以说Toolbar
,并删除您将其添加到{strong> styles.xml 文件中{ {1}}文件夹,例如:
values
答案 1 :(得分:0)
使用TableRow thead = new TableRow();
for (int i = 0; i < dt_fundtype.Rows.Count; i++)
{
TableCell td = new TableCell();
CheckBox chk = new CheckBox();
chk.ID = "fund_" + dt_fundtype.Rows[i]["fund_type_cd"];
chk.Text = dt_fundtype.Rows[i]["fund_type"].ToString();
chk.AutoPostBack = true;
chk.CheckedChanged += new EventHandler(Chk_Fund_CheckedChange);
td.Controls.Add(chk);
thead.Cells.Add(td);
}
tbl_fundtype.Rows.Add(thead);
android:theme