我使用带有自定义布局的RemoteViews创建了一个通知。布局结构如下。
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:scaleType="centerCrop"
android:adjustViewBounds="true" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="6"
android:layout_gravity="center_vertical"
android:orientation="vertical"
android:paddingLeft="8dp"
android:paddingTop="8.0dip" >
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="4"
android:divider="?android:listDivider"
android:dividerPadding="12.0dip"
android:gravity="center_vertical"
android:layout_gravity="center"
android:orientation="horizontal"
android:showDividers="middle|beginning" >
</LinearLayout>
</LinearLayout>
它的效果只出现在通知高度的一小部分,而不是通知的整个高度。例如。签出http://i57.tinypic.com/14dzo9i.png屏幕截图中的按钮(中间通知是问题的焦点),它们位于父LinearLayout的最后一个子节点中,并且应该全部垂直居中对齐。
我的问题与Height of notification incorrect "match_parent"非常相似,但由于那里没有真正的答案,我问这个问题。关于该问题的答案确实涉及动态计算通知高度的方法。如果这是使用的解决方案,我想知道如何使用从那里获得的高度来动态设置远程视图的高度,因为我没有在远程视图对象上看到高度设置器。
请注意,当我使用相对布局时,图像的高度很好。相对布局仍有两个问题:1。按钮仍然没有垂直居中对齐和2.我只能包装内容或填充父级,而不是将可用空间划分为两个子级线性布局。屏幕截图:http://i59.tinypic.com/o1000j.png
答案 0 :(得分:0)
似乎正在努力将android:layout_height="wrap_content"
更改为android:layout_height="match_parent"
以查看其中的观看次数。以某种方式错过了它,虽然这个值组合的行为很有趣。
答案 1 :(得分:0)
将你的布局更改为RelativeLayout并使用param android:toLeftOf =“@ + id / ...”,android:toRightOf =“@ + id / ...”将你的子视图与布局对齐。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical">
<ImageView
android:id="@+id/image1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:src="@drawable/ic_launcher" />
<ImageView
android:id="@+id/image2"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_toRightOf="@+id/image1"
android:src="@drawable/ic_launcher" />
</RelativeLayout>