我在同一行上有一个带有 imageview 和 textview 的 XML 布局。这工作得很好,但现在我想在它下面放置三个按钮,我无法弄清楚使用什么布局来实现这些按钮,因为布局只是设置在图像和 textview 之间的行内。
下图显示了我试图实现的目标。(b1、b2 和 b3 代表按钮)
谁能给我一个正确的方向推动我如何获得这种布局?
这是我的 XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<ImageView
android:id="@+id/imgLink"
android:layout_width="78dp"
android:layout_height="match_parent"
android:src="@drawable/cons" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="75dp"
android:gravity="center"
android:text="Contacts"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="40sp" />
</LinearLayout>
</LinearLayout>
现在布局错位的文本视图/布局