将Android Manifest.xml文件中的TargetSdk版本从15更改为18会影响Linearlayout
的高度。实际上,Linearlayout
的高度随着TargetSdk的变化而增加。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/footer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingTop="3dp"
android:layout_margin="0dp"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:orientation="horizontal"
android:background="@drawable/border">
<ImageButton
android:clickable="true"
android:id="@+id/f_rewards"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="center"
android:adjustViewBounds="true"
android:layout_margin="0dp"
android:padding="10dp"
android:layout_alignParentRight="true"
android:layout_weight=".33"
android:background="@drawable/border_left_footer"
android:src="@drawable/rewards_f"
/>
<ImageButton
android:clickable="true"
android:id="@+id/f_scan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="center"
android:adjustViewBounds="true"
android:layout_margin="0dp"
android:padding="10dp"
android:layout_alignParentRight="true"
android:layout_weight=".33"
android:background="@drawable/border_left_footer"
android:src="@drawable/scan_f"
/>
<ImageButton
android:clickable="true"
android:id="@+id/f_check_in"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="center"
android:adjustViewBounds="true"
android:layout_margin="0dp"
android:padding="10dp"
android:layout_alignParentRight="true"
android:layout_weight=".33"
android:background="@drawable/border_left_footer"
android:src="@drawable/check_in_f"
/>
</LinearLayout>
答案 0 :(得分:0)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/footer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingTop="3dp"
android:orientation="horizontal"
android:layout_margin="0dp"
android:layout_alignParentBottom="true"
android:background="@drawable/border">
<ImageButton
android:clickable="true"
android:id="@+id/f_rewards"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="center"
android:layout_margin="0dp"
android:padding="10dp"
android:layout_weight=".33"
android:background="@drawable/border_left_footer"
android:src="@drawable/rewards_f"
/>
<ImageButton
android:id="@+id/f_scan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="0dp"
android:layout_weight=".33"
android:background="@drawable/border_left_footer"
android:clickable="true"
android:padding="10dp"
android:scaleType="center"
android:src="@drawable/scan_f" />
<ImageButton
android:clickable="true"
android:id="@+id/f_check_in"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="center"
android:layout_margin="0dp"
android:padding="10dp"
android:layout_weight=".33"
android:background="@drawable/border_left_footer"
android:src="@drawable/check_in_f"
/>
</LinearLayout>