91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android實現3D標簽云效果

發布時間:2020-10-26 06:42:41 來源:腳本之家 閱讀:163 作者:MrZhao_PerfectCode 欄目:移動開發

最近業務需求,要求實現一個3D星球環繞效果,經過百般查找,終于找到了這個功能。

來先看看效果圖:

Android實現3D標簽云效果

首先還是添加第三方依賴庫:

compile 'com.moxun:tagcloudlib:1.1.0' 

布局:

<?xml version="1.0" encoding="utf-8"?> 
<android.support.constraint.ConstraintLayout 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="com.example.administrator.my3d_demo.MainActivity"> 
 
 <com.moxun.tagcloudlib.view.TagCloudView 
  android:id="@+id/tag_cloud" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" 
  android:layout_margin="10dp" 
  app:autoScrollMode="uniform" 
  app:darkColor="#ff00ff00" 
  app:lightColor="#ffff0000" 
  app:radiusPercent="0.5" 
  app:scrollSpeed="3" /> 
 
</android.support.constraint.ConstraintLayout> 

MainActivity代碼:

package com.example.administrator.my3d_demo; 
 
import android.graphics.Color; 
import android.support.v7.app.AppCompatActivity; 
import android.os.Bundle; 
 
import com.moxun.tagcloudlib.view.TagCloudView; 
 
public class MainActivity extends AppCompatActivity { 
 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.activity_main); 
 
  TagCloudView tagCloudView = (TagCloudView) findViewById(R.id.tag_cloud); 
  tagCloudView.setBackgroundColor(Color.LTGRAY); 
 
  TextTagsAdapter tagsAdapter = new TextTagsAdapter(new String[20]); 
  tagCloudView.setAdapter(tagsAdapter); 
 } 
} 

一個適配器代碼:

package com.example.administrator.my3d_demo; 
 
import android.content.Context; 
import android.support.annotation.NonNull; 
import android.util.Log; 
import android.view.Gravity; 
import android.view.View; 
import android.view.ViewGroup; 
import android.widget.TextView; 
 
import com.moxun.tagcloudlib.view.TagsAdapter; 
 
import java.util.ArrayList; 
import java.util.Collections; 
import java.util.List; 
import java.util.Random; 
 
public class TextTagsAdapter extends TagsAdapter { 
 
 private List<String> dataSet = new ArrayList<>(); 
 
 public TextTagsAdapter(@NonNull String... data) { 
  dataSet.clear(); 
  Collections.addAll(dataSet, data); 
 } 
 
 @Override 
 public int getCount() { 
  return dataSet.size(); 
 } 
 
 @Override 
 public View getView(final Context context, final int position, ViewGroup parent) { 
  String[] name = {"1", "2", "3", "4", "5", "6", "7", "8", "9"}; 
  /*int[] name={R.mipmap.ic_launcher,R.mipmap.ic_launcher,R.mipmap.ic_launcher, 
    R.mipmap.ic_launcher,R.mipmap.ic_launcher,R.mipmap.ic_launcher, 
    R.mipmap.ic_launcher,R.mipmap.ic_launcher,R.mipmap.ic_launcher};*/ 
  Random rand = new Random(); 
  int randNum = rand.nextInt(9); 
 
  TextView tv = new TextView(context); 
  ViewGroup.MarginLayoutParams lp = new ViewGroup.MarginLayoutParams(100, 100); 
  tv.setLayoutParams(lp); 
  tv.setText("No." + name[randNum]); 
  tv.setGravity(Gravity.CENTER); 
  tv.setOnClickListener(new View.OnClickListener() { 
   @Override 
   public void onClick(View v) { 
    Log.e("Click", "Tag " + position + " clicked."); 
   } 
  }); 
  return tv; 
 } 
 
 @Override 
 public Object getItem(int position) { 
  return dataSet.get(position); 
 } 
 
 @Override 
 public int getPopularity(int position) { 
  return position % 7; 
 } 
 
 @Override 
 public void onThemeColorChanged(View view, int themeColor) { 
  ((TextView) view).setTextColor(themeColor); 
 } 
} 

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

凉城县| 正宁县| 仲巴县| 敖汉旗| 仙居县| 霍林郭勒市| 辰溪县| 同江市| 台湾省| 栾川县| 天峻县| 郓城县| 玉树县| 望奎县| 织金县| 江华| 张家口市| 电白县| 中山市| 莫力| 巩留县| 太原市| 安庆市| 柘城县| 正安县| 娄底市| 舟山市| 农安县| 岳普湖县| 苗栗市| 永州市| 长乐市| 正定县| 雷山县| 滨州市| 海伦市| 尖扎县| 丽水市| 屏东市| 黄石市| 甘德县|