让我解释一下, 需要按照父系家长的顺序, 将电流居中, 但考虑到对布局左侧的观察:
|------------Screen--------------|
[View] [Short Text]
|------------Screen--------------|
[View][Loooooooooooooooooong Text]
使用相对布局重力属性 I only getting this:
|------------Screen--------------|
[View] [Short Text] <------THIS IS WRONG.
|------------Screen--------------|
[View][Loooooooooooooooooong Text]
提前感谢
问题是如何做出布局。 没有代码可以从它开始( 当然没有固定的视图宽度值), 我其实是相对的, 但是没有运气 。
现在,如果你真的想从头开始做点什么的话,
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_weight="0"
android:src="@drawable/something" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>