当前位置:网站首页>Functions and usage of viewswitch
Functions and usage of viewswitch
2022-07-07 17:36:00 【XLMN】
ViewSwitcher The function and usage of
Represents the view switching component , Multiple view Stack up , Show only one component at a time , When control from one view Switch to another view when , You can specify animation effects ,
To give viewswitcher Add multiple components , Use viewswitcher Of setfactory Method setting viewfactory, And by the viewfactory establish view
public class MainActivity extends Activity {
// Define a constant , Number of applications per screen
public static final int NUMBER_PER_SCREEN = 12;
// Internal classes representing the application
public static class DataItem {
// Application name
public String dataName;
// App icons
public Drawable drawble;
}
// Save the list aggregate
private ArrayList<DataItem> items = new ArrayList<MainActivity.DataItem>();
// Record which screen is currently being displayed ,
private int sceeNo = -1;
// Total number of screens saved
private int screenCount;
ViewSwitcher vs;
// establish Layoutinflater object
LayoutInflater inflater;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.viewswitcher);
inflater = LayoutInflater.from(MainActivity.this);
// Create a containing 40 An element of liset aggregate , Used to simulate inclusion 40 Applications
for (int i = 0; i < 40; i++) {
String label = "" + i;
Drawable dr = getResources().getDrawable(R.drawable.mia5);
DataItem dt = new DataItem();
dt.dataName = label;
dt.drawble = dr;
items.add(dt);
}
// Calculate the total number of screens the application occupies
// The energy of the computing application can be divided NUMBER_PER_SCREEN;
// If it's not divisible , The total number of screens should be the result of division plus 1;
screenCount=items.size()%NUMBER_PER_SCREEN == 0?
items.size()/NUMBER_PER_SCREEN:
items.size()/NUMBER_PER_SCREEN +1;
vs=(ViewSwitcher) findViewById(R.id.viewswitcher);
vs.setFactory(new ViewFactory() {
// Return to one GridView Components
@Override
public View makeView() {
// TODO Auto-generated method stub
// Load components , The actual is GridView Components
return inflater.inflate(R.layout.slidelistview, null);
}
});
// The first screen is displayed when the page is loaded
next(null);
}
public void next(View view) {
// TODO Auto-generated method stub
if (sceeNo < screenCount - 1) {
sceeNo++;
// by ViewSwitcher Animate the component display process
vs.setInAnimation(this, R.anim.slide_in_right);
// by ViewSwitcher Animate the process of component hiding
vs.setInAnimation(this, R.anim.slide_out_left);
// Control what will be displayed on the next screen GridView Corresponding adapter
((GridView) vs.getNextView()).setAdapter(ba);
// Click the button on the right , Show next screen
// After learning gesture detection , You can also use gestures to display the next screen
vs.showNext();
}
}
public void prev(View v) {
// TODO Auto-generated method stub
if (sceeNo > 0) {
sceeNo--;
// by viewswitcher Animate the component display process
vs.setInAnimation(this, android.R.anim.slide_in_left);
// by viewswitcher Animate the process of component hiding
vs.setInAnimation(this, android.R.anim.slide_in_left);
// Control what will be displayed on the next screen gridview Corresponding adapter
((GridView) vs.getNextView()).setAdapter(ba);
// Click the left button to display the previous screen , You can also use gestures
// After learning gesture detection , You can also realize the previous screen through gesture detection
vs.showPrevious();
}
}
// The baseAdapter Responsible for the display of each screen GridView Provide list items
private BaseAdapter ba = new BaseAdapter() {
@Override
public View getView(int arg0, View arg1, ViewGroup arg2) {
// TODO Auto-generated method stub
View view = arg1;
if (arg1 == null) {
// Load the layout file
view = inflater.inflate(R.layout.labelicon,
null);
}
// Get the layout I see in imageview Components , And set the icon for it
ImageView iv = (ImageView) view
.findViewById(R.id.image01);
iv.setImageDrawable(getItem(arg0).drawble);
// obtain
TextView tv = (TextView) view
.findViewById(R.id.textview);
tv.setText(getItem(arg0).dataName);
return view;
}
@Override
public long getItemId(int arg0) {
// TODO Auto-generated method stub
//
return arg0;
}
@Override
public DataItem getItem(int arg0) {
// TODO Auto-generated method stub
// according to screenno Computation first argo List item data
return items.get(sceeNo * NUMBER_PER_SCREEN + arg0);
}
@Override
public int getCount() {
// TODO Auto-generated method stub
// If you have reached the last screen , And the number of applications cannot be divided number——per_screen
if (sceeNo == screenCount - 1
&& items.size() % NUMBER_PER_SCREEN != 0) {
// The number of programs displayed on the last screen is the number of applications number_per_screen Seeking remainder
return items.size() % NUMBER_PER_SCREEN;
}
// Otherwise, the number of programs displayed on each screen is number_per_screen
return NUMBER_PER_SCREEN;
}
};
}
<?xml version="1.0" encoding="utf-8"?><!-- Define a Viewswitcher -->
<ViewSwitcher
android:id="@+id/viewswitcher"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ViewSwitcher>
<!-- Define buttons to scroll to the previous screen -->
<Button
android:id="@+id/but01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:onClick="prev"
android:text="&1t" />
<Button
android:id="@+id/but02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:onClick="next"
android:text="&gt" />
<?xml version="1.0" encoding="utf-8"?> <ImageView
android:id="@+id/image01"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center" />
<?xml version="1.0" encoding="utf-8"?> <!-- Animate drag in from right ,duration Specify the duration of the animation -->
<translate
android:duration="@android:integer/config_mediumAnimTime"
android:fromXDelta="100%p"
android:toXDelta="0" />
<?xml version="1.0" encoding="utf-8"?> <!-- Animate the drag in from the left ,duration Specify the duration of the animation -->
<translate
android:duration="@android:integer/config_mediumAnimTime"
android:fromXDelta="-100%p"
android:toXDelta="0" />
<?xml version="1.0" encoding="utf-8"?> 边栏推荐
- Leetcode brush questions day49
- serachview的功能和用法
- LeetCode 497(C#)
- 【网络攻防原理与技术】第3章:网络侦察技术
- Sator推出Web3遊戲“Satorspace” ,並上線Huobi
- [fan Tan] after the arrival of Web3.0, where should testers go? (ten predictions and suggestions)
- 使用Stace排除故障的5种简单方法
- LeetCode 890(C#)
- 浅谈 Apache Doris FE 处理查询 SQL 源码解析
- Problems encountered in Jenkins' release of H5 developed by uniapp
猜你喜欢
AI来搞财富分配比人更公平?来自DeepMind的多人博弈游戏研究
第3章业务功能开发(安全退出)
【TPM2.0原理及应用指南】 1-3章
百度地图自定义样式向右拖拽导致全球地图经度0度无法正常显示
Seaborn data visualization
[Seaborn] combination chart: facetgrid, jointgrid, pairgrid
第2章搭建CRM项目开发环境(搭建开发环境)
Skimage learning (2) -- RGB to grayscale, RGB to HSV, histogram matching
网络攻防复习篇
99%的人都不知道|私有化部署还永久免费的即时通讯软件!
随机推荐
本周小贴士#141:注意隐式转换到bool
Solid function learning
如何在软件研发阶段落地安全实践
Share the latest high-frequency Android interview questions, and take you to explore the Android event distribution mechanism
本周小贴士#140:常量:安全习语
LeetCode刷题day49
alertDialog創建对话框
Flash build API Service - generate API documents
【可信计算】第十二次课:TPM授权与会话
actionBar 导航栏学习
责任链模式 - Unity
L1-023 输出GPLT(Lua)
AI来搞财富分配比人更公平?来自DeepMind的多人博弈游戏研究
【饭谈】如何设计好一款测试平台?
DevOps 的运营和商业利益指南
Devops' operational and commercial benefits Guide
LeetCode 648(C#)
国内首创!Todesk将RTC技术融入远程桌面,画质更清晰操作更流畅
【网络攻防原理与技术】第4章:网络扫描技术
Rpcms method of obtaining articles under the specified classification