我正在尝试生成bitmap
以显示在通知中。布局有点复杂,但是,我需要根据屏幕大小设置宽度。在XML中,我在根目录中有一个LinearLayout
,我用
LinearLayout v = (LinearLayout) i inflater.inflate(R.layout.notification_expanded_detail, null, false);
这种布局有很多我需要填充的元素。它们的宽度取决于布局本身的宽度,布局的宽度因手机而异。我用
设置了膨胀布局的宽度LinearLayout.LayoutParams params = new LinearLayout.LayoutParams((int) available_width, LinearLayout.LayoutParams.WRAP_CONTENT);
v.setLayoutParams(params);
但是,当我尝试从中生成bitmap
时,似乎使用setLayoutParams
设置的大小不会影响膨胀布局的子视图。我在SO中有很多问题,但是,所有问题都涉及给已经有rootView
的布局进行膨胀,但对我来说没什么用。一些答案表明我在视图上调用了measure()
方法。但是,在调用measure方法后,getMeasuredWidth
返回的宽度小于我使用setLayoutParams
调用设置的宽度。
关于这个问题的更多背景。我试图显示一个带有占位符ImageView的通知,我稍后会用从XML中扩展的视图生成的位图填充该通知。远程视图布局是
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/sliderViewBottom"
android:layout_width="match_parent"
android:layout_height="256dp"
android:background="@color/detail_page_blue"
android:clickable="true"
android:focusable="false"
android:orientation="vertical"
android:gravity="center"
android:padding="10dp"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@color/white"
>
<ImageView
android:id="@+id/progressImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#D05757"
android:gravity="center"
android:paddingBottom="8dp"
android:paddingTop="8dp"
>
<TextView
android:id="@+id/overAllDelay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Delayed by "
android:textColor="@color/white"
/>
<TextView
android:id="@+id/overAllDelayVal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/overAllDelay"
android:text="-"
android:textColor="@color/white"
/>
</RelativeLayout>
</LinearLayout>
我试图膨胀并生成位图以在progressImage
中设置的布局是
<RelativeLayout
android:id="@+id/swipe_page_track_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="10dp"
android:paddingLeft="@dimen/swipe_layout_info_card_track_margin"
android:paddingRight="@dimen/swipe_layout_info_card_track_margin"
>
<ImageView
android:id="@+id/fromGreenCircle"
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_alignParentLeft="true"
android:layout_marginTop="1dp"
android:src="@drawable/from_green_circle"/>
<ImageView
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_alignParentRight="true"
android:layout_marginTop="1dp"
android:src="@drawable/station_end"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="3dp"
android:layout_alignParentRight="true"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="4.5dp"
android:background="@drawable/swipe_page_empty_track"
/>
<ImageView
android:id="@+id/fromGreenTrack"
android:layout_width="105dp"
android:layout_height="3dp"
android:layout_alignParentLeft="true"
android:layout_marginTop="4.5dp"
android:src="@drawable/from_green_track"
/>
<ImageView
android:id="@+id/trackNavigationIcon"
android:layout_width="12dp"
android:layout_height="12dp"
android:layout_marginLeft="100dp"
android:src="@drawable/ic_track_detail_card_current_station_pointer"
/>
<TextView
android:id="@+id/currentStatus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/trackNavigationIcon"
android:layout_marginTop="10dp"
android:textColor="@color/black"
/>
</RelativeLayout>
我试图用
来扩充第二个布局 LinearLayout v = (LinearLayout) i inflater.inflate(R.layout.notification_expanded_detail, null, false);
然后正在使用
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams((int) available_width, LinearLayout.LayoutParams.WRAP_CONTENT);
v.setLayoutParams(params);
此available_width是动态计算的。但是,当我后来尝试使用v.layout()
从这个膨胀的视图生成位图时,它生成的图像不符合我设置的宽度。
后来,我遇到this SO线程,我注意到在膨胀时,指定了new LinearLayoutParams(contex)
而不是指定null作为parentView。我试过了,现在,动态设置的宽度正在受到尊重。
答案 0 :(得分:0)
我遇到了这个SO线程,我注意到在膨胀时,而不是指定null作为parentView,指定了新的LinearLayoutParams(contex)。我试过了,现在,动态设置的宽度正在兑现