我正在尝试设置我的登录表单,但是我无法将输入的背景设置为白色。
@android:style / TextAppearance.DeviceDefault.Inverse有效,因为它显示输入标题的白色;但是,对于提示文本,它仍然是黑色的。
有没有办法让我一次看到各种文字外观样式,而不是逐个尝试每种风格?我注意到有很长的已定义样式列表,但我无法将它们全部一起查看以进行比较。
app.register.controller('adminDeleteCourse', ['$scope', '$http', '$modal', '$location', 'pinesNotifications', '$route', 'SessionService', 'WebService', function($scope, $http, $modal, $location, pinesNotifications, $route, SessionService, WebService){
var base_url = $("meta[name='base_url']").attr('content');
$scope.courses = {};
$scope.open = function(name, size) {
var modalInstance = $modal.open({
templateUrl: 'myModalContent.html',
controller: function($scope, $modalInstance, items) {
$scope.items = items;
$scope.ok = function() {
$data = {
user_id: name
};
$http({
method: 'post',
url: base_url + '/course/getcourses',
data : $data
}).
success(function(data, status, headers, config) {
if(data['success']) {
$route.reload();
pinesNotifications.notify({
title: 'Success',
text: 'Course successfully deleted.',
type: 'success',
hide: true
});
} else {
pinesNotifications.notify({
title: 'Error',
text: data['errors'],
type: 'error',
hide: true
});
}
}).
error(function(data, status, headers, config) {
$('#error').html('code: ' + status);
$('#alert').fadeIn(1000).removeClass('hide');
});
$modalInstance.close();
};
}]);
答案 0 :(得分:0)
尝试在TextInputEditText
中添加它机器人:textColorHint =" @颜色/ yourColor"
答案 1 :(得分:0)
你可以这样做。
更改function MarkasRead(e) {
alert(e.target.id);
}
的{{1}}文字颜色
TextInputLayout
样式代码
LEFT-TOP
您可以在app:hintTextAppearance="@style/text_in_layout_hint_Style"
。
<style name="text_in_layout_hint_Style">
<item name="android:textColor">#FF0000</item>
</style>