您好,登錄后才能下訂單哦!
怎么在Android中實現一個圓形圖片功能?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
注:在build.gradle中添加:
implementation 'de.hdodenhof:circleimageview:1.3.0'
XML布局文件:
<?xml version="1.0" encoding="utf-8"?> <AbsoluteLayout android:id="@+id/root" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".Home" android:layout_gravity="center"> <!--定義一個文本框用于存放頭像,使用絕對布局--> <de.hdodenhof.circleimageview.CircleImageView android:id="@+id/imageview" android:layout_x="150dp" android:layout_y="75dp" android:layout_width="100dp" android:layout_height="100dp"/> <!--定義一個文本框,使用絕對定位--> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_x="20dp" android:layout_y="225dp" android:text="用戶名:"/> <!--定義一個文本編輯框,使用絕對定位--> <EditText android:layout_x="80dp" android:layout_y="215dp" android:hint="郵箱/手機/用戶名" android:layout_width="wrap_content" android:width="275dp" android:layout_height="wrap_content" android:singleLine="true" /> <!--定義一個文本框使用絕對定位--> <TextView android:layout_x="20dp" android:layout_y="285dp" android:text=" 密 碼 :" android:gravity="center" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <!--定義一個文本編輯框,使用絕對定位--> <EditText android:layout_x="80dp" android:layout_y="275dp" android:hint="密碼/驗證碼" android:layout_width="wrap_content" android:width="275dp" android:layout_height="wrap_content" android:password="true" android:singleLine="true" /> <!--定義一個按鈕,使用絕對定位--> <Button android:layout_x="100dp" android:layout_y="350dp" android:layout_width="200dp" android:layout_height="wrap_content" android:text=" 登 錄 "/> </AbsoluteLayout>
Java代碼 動態設置頭像:
//點擊 切換圖片 public class Home extends AppCompatActivity { private LinearLayout mainLayout=null; private ImageView iv=null; //定義一個訪問圖片的數組 int[] images = new int[]{//放置你的圖片 R.drawable.gass, R.drawable.gonzhixiaochou }; //用于圖片切換 int currenImg = 0; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main);//顯示manLayout //創建CirImageView組件 final CircleImageView circleimageView01 = (CircleImageView) findViewById(R.id.imageview); //設置CirImageView背景 circleimageView01.setImageResource(images[0]); circleimageView01.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { //切換背景 circleimageView01.setImageResource(images[++currenImg % images.length]); } }); } }
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。