我无法将ImageButton显示在屏幕的右侧。如果我将ImageButton放在内部LinearLayout上方,它将显示在左侧,但是当我将它放在内部LinearLayout下方时,它根本不会显示。下面是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="fill_parent"
android:orientation="horizontal" android:padding="2dip"
style="@style/default_style">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/layout1"
android:orientation="vertical" >
<TableLayout android:layout_width="fill_parent"
android:layout_height="wrap_content" android:id="@+id/headerTable"
android:stretchColumns="0,1">
<TableRow android:layout_width="fill_parent" android:id="@+id/headerRow"
android:layout_height="match_parent">
<TextView android:text="Fullname" android:id="@+id/fullname"
android:layout_height="wrap_content" android:layout_gravity="left"
android:layout_width="fill_parent" android:textStyle="bold"
style="@style/default_style"></TextView>
<TextView android:text="ContentTimestamp" android:id="@+id/content_timestamp"
android:layout_height="wrap_content" android:layout_gravity="right"
android:layout_width="fill_parent"
style="@style/default_style"></TextView>
<ImageView android:id="@+id/hasGeoLocation"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:src="@drawable/map" android:paddingLeft="2dip" android:visibility="visible">
</ImageView>
</TableRow>
</TableLayout>
<TextView android:id="@+id/content"
android:text="Content blah blah blah blah blah blah blah blah blah"
android:layout_width="fill_parent" android:gravity="center_vertical"
android:textSize="16dip" android:layout_height="wrap_content"
android:paddingLeft="5dip"
style="@style/default_style"> </TextView>
</LinearLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageButton android:id="@+id/hasAudio"
android:layout_width="50px"
android:layout_height="50px"
android:layout_toRightOf="@+id/layout1"
android:gravity="right"
android:src="@drawable/play"
android:visibility="visible" />
</RelativeLayout>
</LinearLayout>
答案 0 :(得分:1)
这是另一种可能的解决方案。您可以将内部 LinearLayout的权重设置为一个值,例如1.这将允许ImageButton在父级而不是外部的约束内呈现。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="horizontal" android:padding="2dip"
style="@style/default_style">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center_vertical"
android:layout_weight="1">
<TableLayout android:layout_width="fill_parent"
...
参考文档: http://developer.android.com/reference/android/widget/LinearLayout.LayoutParams.html#weight
答案 1 :(得分:0)
您需要将ImageButton放在布局中。它不会渲染,因为你没有告诉它在哪里渲染。
通过在您拥有的线性之后添加相对布局,您可以按照自己想要的方式定位它。使用相对布局将图像定位到右侧http://developer.android.com/reference/android/widget/RelativeLayout.html
以下文章提供了有关在RelativeLayout http://www.higherpass.com/Android/Tutorials/Exploring-Android-Linearlayout-And-Relativelayout/
中定位内容的一些信息