Android Programming

Posted stycoding

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Programming相关的知识,希望对你有一定的参考价值。

控件和布局

1.TextView

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/text_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="I‘m a TextView"
        android:gravity="center"
        android:textSize="24sp"
        android:textColor="#00ff00" />
    <!-- 字体大小以sp为单位 -->

</LinearLayout>

 技术图片

 

2. Button

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    
    <Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="I‘m a Button"
        />

</LinearLayout>

运行结果:

技术图片

 

图中界面按钮显示的文字为text属性内内容的大写形式。通过设置textAllCaps属性,可以让界面按钮显示的文字和实际设置的text内容相同

<Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="I‘m a Button"
        android:textAllCaps="false"
        />

运行结果:

技术图片

 

2.1 注册按钮监听器

按钮监听器有两种注册方式,一种是使用匿名类注册:

技术图片

按下按钮,出现一个Toast

运行结果:

技术图片

 

另一种则是通过实现接口的方法来注册:

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button button = (Button) findViewById(R.id.button);
        button.setOnClickListener(this);
    }
    
    @Override
    public void onClick(View v){
        switch(v.getId()) {
            case R.id.button:
                // 在此处添加逻辑
                break;
            default:
                break;
        }
    }
}

 

以上是关于Android Programming的主要内容,如果未能解决你的问题,请参考以下文章

typescript Angular最终版本的Angular 2测试片段。代码库https://developers.livechatinc.com/blog/category/programming

typescript Angular最终版本的Angular 2测试片段。代码库https://developers.livechatinc.com/blog/category/programming

Android Programming: Pushing the Limits -- Chapter 1: Fine-Tuning Your Development Environment(示例代码

Programming In Scala笔记-第二三章

Android Programming: Pushing the Limits -- Chapter 2: Efficient Java Code for Android

Android代码片段