我想将我的应用图标添加到我的应用名称左侧,就像我在图片中标记的那样。
我从这里尝试了一些建议 在我的清单中添加android:logo与@style
建立链接还有一些我已经忘记了
<script>
$(function () {
$("#txtUsername").keyup(function () {
var name = $("#txtUsername").val();
var status = $("#userStatus");
var user = $.trim(name);
if (user.length > 3) {
status.html("Checking....")
$.post("/Home/chkPrevUser", { username: name },
function (data) {
if (data == true) {
status.html("<font color=green>'<b>" + name + "</b>' is available!</font>");
} else {
status.html("<font color=red>'<b>" + name + "</b>' is not available!</font>");
}
});
} else {
status.html("Need more characters...");
}
});
});
</script>
@using (Html.BeginForm("Register", "Home"))
{
@Html.TextBoxFor(a => a.username, new { id = "txtUsername" })
@Html.ValidationMessageFor(a => a.username)
}
并且它们都不起作用,我可以就此问一些帮助吗?
答案 0 :(得分:2)
在您的活动中覆盖onCreateOptionsMenu方法
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
super.onCreateOptionsMenu(menu, inflater);
getSupportActionBar().setIcon(R.drawable.ic_launcher);
}