当前位置:   article > 正文

安卓笔记-加油-奥利给!_xml排版的宽度

xml排版的宽度

1、安卓中的单位

px: 手机屏幕的最小显示单位,与设备的显示屏有关

dp: 它是与设备无关的显示单位,与屏幕尺寸有关

sp: 它是专门设置字体的大小,在系统设置中可以调整字体大小。

2、视图的宽高

通过属性android:layout_width表达宽度,layout_height表示高度,主要的类型有下面三种:

match_parent:表示与上级视图保持一致

wrap_content: 表示与内容自适应

以dp为单位的具体尺寸

3、视图的对齐方式

采用layout_gravity属性,它指定了当前视图相对于上级视图的对齐方式。

采用gravity属性 指定了下级视图相对于当前视图的对齐方式

\他们的值都包括left,top,right,bottom,center,可以left|top表示即靠左也考上

4、线性布局

参数 android:orientation="vertical" 垂直布局 android:orientation="horizontal" 水平布局

线性布局子视图可以使用 android:layout_weight="1" 比重来设置所在宽度等比,

  1. <LinearLayout
  2. android:layout_width="300dp"
  3. android:layout_height="300dp"
  4. android:background="#ccc"
  5. android:orientation="vertical"
  6. >
  7. <!--放对应的视图组件-->
  8. </LinearLayout>

5、相对布局

layout_centerInParent 相对于上级元素在什么位置

  1. <RelativeLayout
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent"
  4. >
  5. <TextView
  6. android:layout_width="100dp"
  7. android:layout_height="100dp"
  8. android:text="我在中间"
  9. android:layout_centerInParent="true"
  10. ></TextView>
  11. </RelativeLayout>

6、网格布局

类似于html中的table,  关键属性

android:columnCount="2" 2行
 android:rowCount="2"     2列

  1. <GridLayout
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent"
  4. android:columnCount="2"
  5. android:rowCount="2"
  6. >
  7. </GridLayout>

7、滚动视图 scrollView

ScrollView 垂直方向的滚动视图,layout_width属性值必须设置match_parent, layout_height=wrap_content.

② HorizontalScrollView 水平方向的滚动视图,水平方向滚动时,layout_width属性值为wrap_content, layout_height属性值设置为match_parent。

8、给按钮加监听

① 继承点击事件

② 绑定事件

③ 在点击响应方法加判断 

  1. //继承VIew的点击监听事件 implements View.OnClickListener
  2. public class MainActivity extends AppCompatActivity implements View.OnClickListener{
  3. @Override
  4. protected void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.activity_main);
  7. //绑定事件
  8. findViewById(R.id.button2).setOnClickListener(this);
  9. }
  10. //点击事件
  11. @Override
  12. public void onClick(View v) {
  13. //判断是那个按钮点击的
  14. if (v.getId() == R.id.button2) {
  15. TextView tv = findViewById(R.id.tv);
  16. tv.setText("哈哈 我点击了一下5555");
  17. int d = Log.d("aaaa", "5555");
  18. }
  19. }
  20. public void doclick(View view) {
  21. TextView tv = findViewById(R.id.tv);
  22. tv.setText("哈哈 我点击了一下222");
  23. int d = Log.d("aaaa", "22222");
  24. }
  25. }

9、图片显示

图片放置在res/drawable目录下,不能用纯数字格式。

还可以用ImageButton,图片按钮。

  1. <ImageView
  2. android:id="@+id/image"
  3. android:layout_width="match_parent"
  4. android:layout_height="200dp"
  5. android:src="@drawable/aa"
  6. ></ImageView>
  1. ImageView iv = findViewById(R.id.image);
  2. iv.setImageResource(R.drawable.bb);

图片的显示类型

图片+文字处理方式

  1. <Button
  2. android:layout_width="wrap_content"
  3. android:layout_height="wrap_content"
  4. android:drawableLeft="@drawable/dd"
  5. android:text="下载"></Button>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/889966
推荐阅读
相关标签
  

闽ICP备14008679号