博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android平板电脑开发— — —碎片
阅读量:6223 次
发布时间:2019-06-21

本文共 1670 字,大约阅读时间需要 5 分钟。

碎片是一种可以嵌入在活动中的UI片段,它能让程序更加合理与充分地使用大屏幕的空间,碎片通常都是在平板电脑开发中才会使用

简单实例


左碎片布局

 
package com.example.fragmenttest; import android.app.Fragment; import android.os.Bundle; import android.support.annotation.Nullable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; /**  * Created by Administrator on 2016/3/2.  */ public class LeftFragment extends Fragment {
@Nullable @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.left_fragment,container,false); return view; } }

右碎片布局 

 

package com.example.fragmenttest; import android.app.Fragment; import android.os.Bundle; import android.support.annotation.Nullable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; /**  * Created by Administrator on 2016/3/2.  */ public class RightFragment extends Fragment {
@Nullable @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.right_fragment,container); return view; } }

主界面

 

package com.example.fragmenttest; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity {
@Override protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } }
 

 


 

 

 

转载于:https://www.cnblogs.com/xkck/p/5234106.html

你可能感兴趣的文章
狗屁淘宝
查看>>
应用程序在后台运行,在后台执行startActivity后会强制把界面带到前端解决方案...
查看>>
5月最新超有趣的免费jQuery插件推荐
查看>>
【004】【JVM——垃圾收集算法】
查看>>
Python troubleshooting.
查看>>
JFinal 国际化 简单实现 beetl
查看>>
Linux使用百度云
查看>>
“从相遇到深爱-Nodejs”-开篇
查看>>
关于Activity的onSaveInstanceSate()这个API
查看>>
Sphinx在windows下安装使用[支持中文全文检索]
查看>>
solr4.0安装和简单导入mysql数据
查看>>
用完成端口开发大响应规模的Winsock应用程序
查看>>
添加deb的源后,执行update报错 NO_PUBKEY 64AA94D00B849883的...
查看>>
Firefox 浏览器运行firefox os模拟器
查看>>
WINCE系统中coredll.dll有什么用?
查看>>
git 中文文件名
查看>>
转载:安卓应用运营知识:VersionCode和VersionName
查看>>
结构体的优化声明
查看>>
android 自定义permission
查看>>
Maven +Tomcat+m2eclipse的热部署(hot deploy)
查看>>