这篇文章主要介绍“Android组件LinearLayout怎么使用”,在日常操作中,相信很多人在Android组件LinearLayout怎么使用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Android
这篇文章主要介绍“Android组件LinearLayout怎么使用”,在日常操作中,相信很多人在Android组件LinearLayout怎么使用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Android组件LinearLayout怎么使用”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
LinearLayout是线性布局组件,放置在其中的组件按列或者按行(就是垂直或者水平)的方式排序分布。
设置LinearLayout容器布局组件的方式:只能取值:horizontal(水平的),vertical(垂直的)
设置布局在LinearLayout容器内的组件对齐方式。
取值包括top, bottom, left, right, center, start, end(上,下,左,右,中,开始,结束)
(包括android:background ,android:visibility等。还有一些改善美观的放置组件的间隔)
android:layout_width和android:layout_height (match_parent/wrap_content)
2 .android:layout_gravity 设置组件在容器中的布局
android:layout_weight 设置组件占用空间的空余显示空间的比列
android:layout_margin ,android:layout_marginTop ,android:layout_marginBottom ,android:layout_marginLeft ,android:layout_marginRight 设置组件的外边界,类似我们搞网页设计html/CSS中margin用法。
activity_main.xml
<?xml version="1.0" encoding="utf-8"?><LinearLayout 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" android:orientation="vertical"> <RadioGroup android:id="@+id/orientation" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" android:padding="10dp" > <RadioButton android:id="@+id/horizontal" android:layout_width="wrap_content" android:layout_height="match_parent" android:text="水平" android:textSize="30dp" /> <RadioButton android:id="@+id/vertical" android:layout_width="wrap_content" android:layout_height="match_parent" android:text="垂直" android:textSize="30dp" /> </RadioGroup> <RadioGroup android:id="@+id/gravity" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" android:padding="10dp" > <RadioButton android:id="@+id/left" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="居左" android:textSize="30dp" /> <RadioButton android:id="@+id/center" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="居中" android:textSize="30dp" /> <RadioButton android:id="@+id/right" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="居右" android:textSize="30dp" /> </RadioGroup> </LinearLayout>
MainActivity.java
package com.example.android_demo02; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle;import android.view.Gravity;import android.widget.LinearLayout;import android.widget.RadioGroup; public class MainActivity extends AppCompatActivity implements RadioGroup.OnCheckedChangeListener { private RadioGroup orientation; private RadioGroup gravity; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); orientation=(RadioGroup) findViewById(R.id.orientation); orientation.setOnCheckedChangeListener(this); gravity=(RadioGroup) findViewById(R.id.gravity); gravity.setOnCheckedChangeListener(this); } @Override public void onCheckedChanged(RadioGroup radioGroup, int i) { switch (i){ case R.id.horizontal: orientation.setOrientation(LinearLayout.HORIZONTAL); break; case R.id.vertical: orientation.setOrientation(LinearLayout.VERTICAL); break; case R.id.left: gravity.setGravity(Gravity.START); break; case R.id.center: gravity.setGravity(Gravity.CENTER_HORIZONTAL); break; case R.id.right: gravity.setGravity(Gravity.END); break; } } }
实现效果:
到此,关于“Android组件LinearLayout怎么使用”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!
--结束END--
本文标题: Android组件LinearLayout怎么使用
本文链接: https://www.lsjlt.com/news/326121.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0