TextViewとImageButtonの重力を設定する最も良い方法は?私は水平の位置にこれらを持っているとTextViewはスペースとImageButtonの90%を取る必要があります10%。Androidのビューに特定のスペースを与える方法は?
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
<ImageButton
android:id="@+id/imageButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/info"/>
</LinearLayout>