我正在用希伯来语(即 rtl)编写一个应用程序。当我为对话框片段设置标题时,它出现在左侧。我试图通过执行以下操作使其显示在右侧:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
{
//set's up the title for this dialog fragment
getDialog().getWindow().setGravity(Gravity.RIGHT);
getDialog().setTitle(R.string.find_Address_text);
但它不影响标题的位置。我怎样才能做到这一点?TNX