0%

Android框架布局

框架布局

这个布局其实还是很简单的,就是一个栈类型的窗口重叠效果,就是最后加入的窗口在最顶层,先加入的在最底层。
在我们的LayoutXML中进行设置:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<FrameLayout android:layout_width="match_parent"
android:layout_height="220dip">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/ic_test"/>

<ImageView
android:id="@+id/iv_play"
android:layout_width="35dip"
android:layout_height="35dip"
android:layout_marginTop="185dip"
android:layout_gravity="bottom"
android:layout_marginBottom="30dip"
android:visibility="visible"
android:src="@drawable/ic_launcher" />
<!-- gone和invisible的区别就是前者是直接删除,后者只是隐藏 -->
</FrameLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/btn_play"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="播放"
android:layout_weight="1"
/>
<Button
android:id="@+id/btn_pause"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="暂停"
android:layout_weight="1"
/>


</LinearLayout>
</LinearLayout>

这里简单的介绍一下,就是说这个layout_marginTop就是一个距离顶部的距离,layout_gravity就是一个位置,layout_marginBottom这个也是一个距底部的位置,这个的话呢先要设置layout_gravity才可以。
然后我们可以这么写代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.example.lx;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageView;

public class TestActivity extends Activity{
private Button bu1;
private Button bu2;
private ImageView im1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_2);
bu1 = (Button) findViewById(R.id.btn_play);
bu2 = (Button) findViewById(R.id.btn_pause);
im1 = (ImageView) findViewById(R.id.iv_play);
bu1.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
im1.setVisibility(View.VISIBLE);
}
});
bu2.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
im1.setVisibility(View.INVISIBLE);
}
});
}

}

这个就可以实现一个对应性的图片展示与显示了。
发现原来在添加图片的时候我们是不能有大写的,这个需要注意,刚发现的。