Ⅰ android 安卓 類似ONE卡片頁(包含圖片文字等)怎麼實現
Android5.0中向我們介紹了一個全新的控制項–CardView,從本質上看,可以將CardView看做是FrameLayout在自身之上添加了圓角和陰影效果。請注意:CardView被包裝為一種布局,並且經常在ListView和RecyclerView的Item布局中,作為一種容器使用。
下面例子來源於android學習手冊, android學習手冊包含9個章節,108個例子,源碼文檔隨便看,例子都是可交互,可運行,源碼採用android studio目錄結構,高亮顯示代碼,文檔都採用文檔結構圖顯示,可以快速定位。360手機助手中下載,排在第四個。
CardView應該被使用在顯示層次性的內容時;在顯示列表或網格時更應該被選擇,因為這些邊緣可以使得用戶更容易去區分這些內容。
使用CardView
首先,假設你的布局如同下面的形式:
<FrameLayout xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content"> <!-- Main Content View --> <RelativeLayout> ... </RelativeLayout> </FrameLayout>
為了使用上面的布局方式來創建一個卡片,首先你需要導入支持的依賴庫(android-support-v7-cardview的jar包)在你的build.gradle文件中。
dependencies { ... compile 'com.android.support:cardview-v7:21.0.2' }
現在將FrameLayout替換為CardView,
<android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content"> <!-- Main Content View --> <RelativeLayout> ... </RelativeLayout> </android.support.v7.widget.CardView>
就是這樣!使用依賴庫能夠保證你的程序穩定的兼容之前的版本;盡管在AndroidL和之前的Android版本中對其處理方式有所不同。
Ⅱ android中圖片和文字怎樣才能在一行
沒錯,線性布局,貼段我寫的代碼給你吧。。可以實現,比較簡陋~哈哈:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="聲音模式:"/>
<ImageView
android:id="@+id/myImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
主要是horizontal~嵌套在垂直的線性布局裡面。這樣就可以接著在下面嵌套個水平的線性布局
Ⅲ android那種文字在圖標下方的界面是怎樣布局出來的,就是像這個的
把圖片和文字做成一個PNG圖片。然後使用ImageButton不就行了嗎?框架布局。
Ⅳ androidstudioitem布局放圖片和文字
1、創建一個fragment.xml布局文件,在裡面添加一個ListView控制項。
2、由於List裡面既要呈現圖片,也要呈現文字,租鍵渣所以再創建一個fragment_item.xml布局文件,在裡面添加ImageView、TextView,用來顯示圖片和文字。
3、使用SimpleAdapter來綁亮櫻定數據保存圖片和弊悄文字即可。
Ⅳ android那種文字在圖標下方的界面是怎樣布局出來的,就是像這個的
這個改帆是採用gridview布置的。首先你先定義一個gridview網格內的布局gridview.xml。然後再設置一個adapter來關聯你的資源文件和布局文件。然後在設置gridview的adapter。
這樣子說太麻煩,我看看我還核鋒雹有沒有源代碼,有的話發給你。沒有的話基或,你可能要等一等了。
Ⅵ android在一張圖片相應位置顯示字的布局
1、在一張圖片的任意位置顯示文字,使用RelativeLayout布局,俗稱相對布局,是在Android開發中使用得最多的一種布局方式,比如在圖片的下邊欄顯示一行文字,代碼如下:
<ImageView
android:id="@+id/imageview_001"
android:layout_width="match_parent"
android:layout_height="120dp"
android:layout_alignParentTop="true"
android:src="@drawable/ic_launcher"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_marginTop="100dp"
/>
更多Android例子,網路一下就知道了,平時也做點學習,TeachCourse比較適合初學者,謝謝採納!
Ⅶ 安卓edittext文字中有圖片怎麼對齊
1、使用表格或網格布局,將圖片和文字放在同一列或行帆頌中,以確保它們對齊。
2、使用文本框或圖像消耐框,將文本和圖像一起放置,並使用對齊選項對它們進行對齊。
3、在文本中插入圖片,然後使用文本對齊選項對文本和圖片進行對齊。
4、使用CSS布局,將圖片和文本放在同一容器中,並使用CSS對齊屬性對它們進行對齊。
5、使用響應式設態橋鄭計,根據屏幕大小和方向,自動調整圖片和文本的位置和大小,以確保它們在不同設備上對齊。edittext是編輯框,主要接收鍵盤字元輸入。
Ⅷ android不同屏幕圖片的文字布局
相對布局 android:layout_below 將該控制項的頂部至於給定ID的控制項之下