Questions tagged «right-to-left»

4
为什么此后写的代码显示“ Hello World!”
这是我在Internet上找到的一些代码: class M‮{public static void main(String[]a‭){System.out.print(new char[] {'H','e','l','l','o',' ','W','o','r','l','d','!'});}} 此代码会打印Hello World!到屏幕上;您可以看到它在这里运行。我可以清楚地看到public static void main书面内容,但这是倒退的。该代码如何工作?怎么编译? 编辑:我在IntellIJ中尝试过此代码,并且工作正常。但是,由于某些原因,它不能与cmd一起在notepad ++中工作。我仍然没有找到解决方案,因此,如果有人这样做,请在下面进行评论。

7
不推荐使用Android context.getResources.updateConfiguration()
就在最近的context.getResources()中。在Android API 25中已不建议使用updateConfiguration(),建议使用上下文。改为使用createConfigurationContext()。 有谁知道如何使用createConfigurationContext来覆盖android系统区域设置? 在此之前,可以通过: Configuration config = getBaseContext().getResources().getConfiguration(); config.setLocale(locale); context.getResources().updateConfiguration(config, context.getResources().getDisplayMetrics());

12
如何设置导航抽屉从右向左打开
首先,我知道这个问题以前曾出现在这里,但经过很多尝试,我仍然没有成功。我在Android Developers网站上处理示例 。 我试图将菜单设置为从右向左打开,而不是在示例中如何实现(从左向右)。另外,我想将打开的菜单按钮移到操作栏的右侧。我在这里也给出了一些答案,例如这个答案。 我尝试更改视图和布局的重力,但出现错误: 绝对重力未找到抽屉视图 您能帮我找出代码中的问题是什么,我应该更改什么才能将菜单设置为从右侧打开,并将操作栏按钮移至右侧? xml代码在这里: <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/drawer_layout" android:layout_gravity="right" android:layout_width="match_parent" android:layout_height="match_parent" > <FrameLayout android:id="@+id/content_frame" android:layoutDirection="rtl" android:layout_width="match_parent" android:layout_height="match_parent" /> <ListView android:id="@+id/left_drawer" android:layout_width="200dp" android:layout_height="match_parent" android:layout_gravity="right" android:choiceMode="singleChoice" android:divider="@android:color/transparent" android:dividerHeight="10dp" android:background="#111"/> </android.support.v4.widget.DrawerLayout>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.