導航:首頁 > 操作系統 > androidclipdrawable

androidclipdrawable

發布時間:2025-07-21 07:43:37

android裡面layer-list中的inset和clip到底有什麼作用

Inset Drawable:用於通過指定的間距把圖片插入到XML中,它在View需要比自身小的背景時常用。有些像padding的作用。例子:
第一步:drawable文件中建立inset_drawable.xml
<?xml version="1.0" encoding="utf-8"?>
<inset
xmlns:android="http://schemas。android。com/apk/res/android"
android:drawable="@drawable/photo2"
android:insetTop="100dp"
android:insetRight="100dp"
android:insetBottom="200dp"
android:insetLeft="100dp" />

第二部,在xml中引用
<LinearLayout xmlns:android="http://schemas。android。com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/inset_drawable">

Clip Drawable:可以剪載圖片顯示,例如,可以通過它來做進度度。你可以選擇是從水平或垂直方向剪載。其中的gravity設置從整個部件的哪裡開始。例子:
第一步,在drawable文件中建立:clip_drawable.xml
<?xml version="1.0" encoding="utf-8"?>
<clip xmlns:android="http://schemas。android。com/apk/res/android"
android:drawable="@drawable/test_img"
android:clipOrientation="horizontal"
android:gravity="left" />
第二步,在ImageView中引用:
<LinearLayout xmlns:android="http://schemas。android。com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<ImageView
android:id="@+id/clipimage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/clip_drawable"/>
</LinearLayout>
Dev Guide中在ImageView中設置的是android:background="@drawable/clip_drawable",但是我使用background的時,會在程序中報空指針的錯誤。
最後,使用程序控制:
ImageView imageView=(ImageView)findViewById(R.id.clipimage);
ClipDrawable clipDrawable=(ClipDrawable)imageView.getDrawable();
clipDrawable.setLevel(5000);
level的值為0到10000 。當值為10000時圖全部顯示。

閱讀全文

與androidclipdrawable相關的資料

熱點內容
為什麼點贊少的伺服器就沒人 瀏覽:126
伺服器sensor干什麼用的 瀏覽:310
抖音app互動信息在哪裡 瀏覽:438
王者榮耀至尊寶什麼時候開伺服器 瀏覽:230
如何導出app上的教學視頻 瀏覽:897
密封壓縮機接線柱 瀏覽:491
phpsockethttps 瀏覽:672
java計算年月日 瀏覽:734
如何把應用加密的密碼改了 瀏覽:542
雲上釘釘加密視頻 瀏覽:958
app推廣在哪裡好做 瀏覽:1001
編譯程序後符號表位置 瀏覽:268
tt伺服器怎麼有狀態 瀏覽:906
解壓館自己開辦還是加盟 瀏覽:846
如何編譯python可執行程序 瀏覽:427
51單片機中斷控制教程 瀏覽:711
解壓筆裡面是什麼的筆 瀏覽:248
java正則表達式匹配括弧 瀏覽:9
門禁加密遙控器可復制嗎 瀏覽:95
中國程序員有多聰明 瀏覽:383