私はこのようなものが欲しい:
私はアンドロイドのrelativelayoutでpalyedし、それは次のようなタグです: android:layout_centerHorizontal="true" 、これは私にこれを与えます:
私は他のタグで遊んでそれらを組み合わせますが、成功しません。
これを行う方法はありますか?
私はこのようなものが欲しい:
私はアンドロイドのrelativelayoutでpalyedし、それは次のようなタグです: android:layout_centerHorizontal="true" 、これは私にこれを与えます:
私は他のタグで遊んでそれらを組み合わせますが、成功しません。
これを行う方法はありますか?
これを試して:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="20dp"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:background="@android:color/black" >
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/linearLayout1"
android:text="YOUR TEXT" />
</RelativeLayout>
これを試して
<RelativeLayout
android:layout_width="fill_parent"
android:background="#FFFFFF"
android:layout_height="wrap_content">
<View
android:layout_width="10dp"
android:layout_height="1dp"
android:layout_centerInParent="true"
android:id="@+id/dummy"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="SDADASd"
android:layout_centerVertical="true"
android:layout_toRightOf="@id/dummy"
android:textColor="#000000"
/>
</RelativeLayout>
or go with linearlayout...
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:gravity="right"
android:layout_weight="1" >
<View
android:layout_width="10dp"
android:background="@android:color/black"
android:layout_height="match_parent"/>
</LinearLayout>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/linearLayout1"
android:text="YOUR TEXT" />
</LinearLayout>
RelativeLayout の中央に透明なビューを追加し、
height="match_parent"
width="15dp"//(it doesn't matter much)
次に、このビューに関連するレイアウトパラメーターを次のように指定します
android:layout_alignRight="@+id/yourView"