- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 Caldroid
库放入另一种语言,但不能。
这是我的代码:
public void setLocale() {
Locale locale = new Locale("ca", "ES");
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config, getBaseContext().getResources().getDisplayMetrics());
}
最佳答案
The code of the calendar:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
setLocale()
View rootView = inflater.inflate(R.layout.calendar, container, false);
LinearLayoutParent = (LinearLayout) rootView.findViewById(R.id.linear_vertical_calendar);
caldroidFragment = new CaldroidSampleCustomFragment();
if (savedInstanceState == null) {
Bundle args = new Bundle();
cal = Calendar.getInstance();
args.putInt(CaldroidFragment.MONTH, cal.get(Calendar.MONTH) + 1);
args.putInt(CaldroidFragment.YEAR, cal.get(Calendar.YEAR));
caldroidFragment.setArguments(args);
}
FragmentManager fragManager = getActivity().getSupportFragmentManager();
FragmentTransaction t = fragManager.beginTransaction();
t.replace(R.id.calendar1, caldroidFragment);
t.commit();
final CaldroidListener listener = new CaldroidListener() {
@Override
public void onSelectDate(Date date, View view) {
// Do something
}
@Override
public void onCaldroidViewCreated() {
// Supply your own adapter to weekdayGridView (SUN, MON, etc)
TextView txtMonths = caldroidFragment.getMonthTitleTextView();
Typeface myTypeface = Typeface.createFromAsset(getActivity().getAssets(), "fonts/Roboto-Light.ttf");
txtMonths.setTypeface(myTypeface);
}
};
caldroidFragment.setCaldroidListener(listener);
return rootView;
}
public void setLocale() {
enter code hereLocale locale = new Locale("ca","ES");
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config,
getBaseContext().getResources().getDisplayMetrics());
}
关于java - 语言环境 Caldroid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31145754/
我试图从 Caldroid 日历中获取 dd/MM/yyyy 格式的选定日期,但是当我解析日期时,它将引发以下错误。 java.text.ParseException: Unparseable dat
您好,我正在使用 Caldroid 库在我的习惯跟踪器应用程序中自定义日历 View ,并且有两个 HashMap successMap 和 failureMap 代表习惯的成功和失败的日子。我正在为
我已使用此代码在 onCreate 方法中将 Caldroid 放入我的 Activity 中。 @Override protected void onCreate(Bundle savedInsta
我正在尝试将 Caldroid 库放入另一种语言,但不能。 这是我的代码: public void setLocale() { Locale locale = new Locale("ca",
我搜索了很多 datepicker 和 calendarview 库来禁用特定日期。 Caldroid 似乎可以选择禁用日期,但它只能禁用与当前日期相对应的日期。但我想禁用特定日期,如 10、18、2
我在 Fragment 中为我的应用程序使用 Caldroid 库。每当我尝试添加一条语句来编辑 Caldroid Frgment 时,它都会给我一个关于 Caldroid fragment 的空对象
我正在为我的应用程序使用 Caldroid 库,但我遇到了一个问题。 我只希望当月的日期显示在我的日历上。 我查看了 Caldroid 文档,但找不到任何内容。 我知道我可以设置日历的最大日期,但我找
我正在使用 Caldroid 库 https://github.com/roomorama/Caldroid .我想禁用比今天早的所有日期。我怎样才能做到这一点?有方法 setDisableDates
我正在尝试使用 Caldroid在我的简单 HelloWorld 应用程序中,该应用程序之前在 Maven 托管结构下包含 ActionBarSherlock。 因为我需要使用 ABS 和 Caldr
如果我想从 2016 年 1 月 15 日到 2016 年 2 月 16 日开始的月份修改日历,如何在 calroid 日历库中更改月份的开始日期和结束日期。 最佳答案 您好,您可以在 Calenda
我正在使用 Caldroid Lib 在我的 Android 应用程序中创建自定义日历,我需要从我的 Web 服务器加载数据,我有一个填充 HashMap 的异步任务,然后我将该数据放入数组列表中,如
我在添加 Caldroid 时遇到问题Android Studio 上的库。我尝试了多种不同的添加方式,但都行不通。我使用 Android Studio 0.8.2。 首先,我创建了一个名为 libr
我通过 fragment 创建了 Caldroid 日历: 这是我在其中创建日历的 CalendarFragment.java 文件: package com.petar.android.simple
我是一名优秀的程序员,十分优秀!