web-dev-qa-db-ja.com

17未満のAPIのLayoutDirection(RTL)を設定します

Persian app (RTL)を作成します。私のアプリには、ListViewとNavigationDrawerが含まれています。

アプリケーションタグ_Android:supportsRtl="true"_のManifestに追加しました

およびonCreate()メソッド:getWindow().getDecorView().setLayoutDirection(View.LAYOUT_DIRECTION_RTL);

17API未満のLayoutDirectionは機能しないことを私は知っています。

aPIレベル17以上の場合:

enter image description here

17未満のAPIの場合:

enter image description here

この問題を解決するにはどうすればよいですか。 1- _conditional statement_を配置してAndroid apiをチェックし、特定のレイアウトを割り当てますか?2-日食でフォルダー_layout-ldrtl_を使用しますか?3 -...?最良の方法??

_<Android.support.v4.widget.DrawerLayout

       xmlns:Android="http://schemas.Android.com/apk/res/Android"

    Android:id="@+id/drawer_layout"


    Android:layout_width="match_parent"
    Android:layout_height="match_parent"
    Android:background="@drawable/myback">



<LinearLayout
    Android:layout_width="match_parent"
    Android:layout_height="match_parent"
    Android:orientation="vertical"
    Android:paddingBottom="40dp"  >


    <LinearLayout
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:orientation="vertical"
        Android:layout_marginLeft="60dp"
        Android:layout_marginRight="60dp"
        Android:layout_marginBottom="20dp"
        Android:layout_marginTop="20dp" >




        <EditText
        Android:id="@+id/edtxtsearch"
        Android:layout_width="wrap_content"
        Android:layout_height="40dp"
        Android:layout_gravity="center_horizontal"
         Android:hint="عبارت مورد جستجو"
          Android:textSize="13dp"
         >

        <requestFocus />
    </EditText> 


        </LinearLayout>
        <LinearLayout
            Android:layout_width="match_parent"
            Android:layout_height="match_parent"
            Android:orientation="vertical"
            Android:layout_gravity="center"

            >


            <ListView
                        Android:id="@+id/mylist"
                        Android:layout_width="200dp"
                      Android:layout_height="wrap_content"
                      Android:layout_gravity="center_horizontal"
                      Android:divider="@Android:color/transparent"
                      Android:dividerHeight="7dp"
                      Android:scrollbarStyle="outsideInset"
                      />



           </LinearLayout>



</LinearLayout>




<FrameLayout
        Android:id="@+id/frame_container"
        Android:layout_width="match_parent"
        Android:layout_height="match_parent"

         >



    </FrameLayout>



     <ListView
        Android:id="@+id/list_slidermenu"
        Android:layout_width="240dp"
        Android:layout_height="wrap_content"
        Android:layout_gravity="start"
        Android:choiceMode="singleChoice"
        Android:background="#ffffff"
        Android:dividerHeight="4dp"  
         Android:divider="@Android:color/transparent"     

       />

    </Android.support.v4.widget.DrawerLayout>
_
30

使用ViewCompat from Android.support.v4.view.ViewCompat!

このような :

ViewCompat.setLayoutDirection (View yourView, int layoutDirection)

layoutDirectionはViewCompatクラスの定数です

19
hamidrezabstn

TextViewに設定するすべての文字列を"\u202B"で連結するだけです。

テキストを強制的にRTLにするだけです。

String textWhichIsLTR = "LTR or RTL text that you want to enforce to RTL";
String enforcedRTL = textWhichIsLTR + "\u202B";
fooTextView.setText(enforcedRTL);
0