編輯:Android開發實例
今天做的一個效果,要求需要添加子view,但是子view中linearlayout中的margin效果如:android:layout_margin="1dip"一直顯示不出來;源代碼見下:
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_weight="1.0"
android:orientation="vertical" android:id="@+id/linearLayout0"
android:layout_margin="1dip" android:background="@drawable/cd_linearlayout_background"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView android:layout_width="106dip"
android:layout_height="110dip" android:layout_weight="1.0"
android:id="@+id/imageView0" android:src="@drawable/a1" />
<TextView android:layout_width="match_parent"
android:layout_height="25dip" android:id="@+id/textView0"
android:text="0" android:textColor="@color/black"
android:textSize="10dip" android:layout_marginLeft="5dip"/>
</LinearLayout>
解決辦法是在此linearlayout外加一個linearlayout,包裹住此linearlayout,代碼如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_weight="1.0"
android:orientation="vertical" xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_weight="1.0"
android:orientation="vertical" android:id="@+id/linearLayout0"
android:layout_margin="1dip" android:background="@drawable/cd_linearlayout_background">
<ImageView android:layout_width="106dip"
android:layout_height="110dip" android:layout_weight="1.0"
android:id="@+id/imageView0" android:src="@drawable/a1" />
<TextView android:layout_width="match_parent"
android:layout_height="25dip" android:id="@+id/textView0"
android:text="0" android:textColor="@color/black"
android:textSize="10dip" android:layout_marginLeft="5dip"/>
</LinearLayout>
</LinearLayout>
這樣就解決了android:layout_margin="1dip"此效果沒有顯示的問題。
本文實例講述了Android實現文字和圖片混排(文字環繞圖片)效果。分享給大家供大家參考,具體如下: 在平時我們做項目中,或許有要對一張圖片或者某一個東西進行文字
登錄應用程序的屏幕,詢問憑據登錄到一些特定的應用。可能需要登錄到Facebook,微博等本章介紹了,如何創建一個登錄界面,以及如何管理安全問題和錯誤嘗試。首先,必須定義兩
一、軟鍵盤介紹 實現軟鍵盤主要用到了系統的兩個類:Keyboard和KeyboardView。 Keyboard類源碼的介紹是: Listene
登錄應用程序的屏幕,詢問憑據登錄到一些特定的應用。可能需要登錄到Facebook,微博等本章介紹了,如何創建一個登錄界面,以及如何管理安全問題和錯誤嘗試。首先,必須定義兩