安卓线性布局android:layout_height="wrap_content"
<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.androi...
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/background"
>
<Button android:text="按钮1" android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<Button android:text="按钮2" android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
按理说该线性布局管理器的高度应该和它里面所有的按钮加起来的高度是一样的吧?但是为什么这个线性布局管理器的高度还是和fill_parent效果是一样的都是全屏的呢?!
求大神指点 展开
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/background"
>
<Button android:text="按钮1" android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<Button android:text="按钮2" android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
按理说该线性布局管理器的高度应该和它里面所有的按钮加起来的高度是一样的吧?但是为什么这个线性布局管理器的高度还是和fill_parent效果是一样的都是全屏的呢?!
求大神指点 展开
1个回答
展开全部
应该不是button撑大的。
是背景图片撑大的。
背景图片本来就占用位置的。
是背景图片撑大的。
背景图片本来就占用位置的。
追问
额。。。还背景图片还可以撑大布局管理器啊?!安卓这布局也太不严谨了吧?!
追答
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.high_pixel_img);
加载资源
bitmap = Bitmap.createBitmap(bitmap, retX, retY, wh, wh, null, false); 根据指定大小裁剪图片
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |