我是靠谱客的博主 失眠果汁,最近开发中收集的这篇文章主要介绍android 里面 对象,Android中Activity对象获取以及属性设定,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Android中UI界面在XML中约束,对象逻辑在Activity中赋值

public class MainActivity extends AppCompatActivity {

Button btn_test_2;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

final Button btn_test_1 = findViewById(R.id.btn_1);

btn_test_1.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

btn_test_1.setTextColor(Color.BLUE);

btn_test_1.setText("ddddddd");

btn_test_1.setBackgroundColor(Color.YELLOW);

}

});

btn_test_2 = findViewById(R.id.btn_2);

btn_test_2.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

btn_test_2.setText("yyyyyy");

btn_test_2.setTextColor(getResources().getColor(R.color.colorAccent));

}

});

}

}

UI在activity_main.xml中编写

android:id="@+id/btn_1"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:layout_marginTop="100dp"

android:layout_marginLeft="50dp"

android:layout_marginRight="50dp"

android:layout_marginBottom="100dp"

android:background="@color/colorAccent"

/>

android:id="@+id/btn_2"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_marginTop="100dp"

android:layout_marginLeft="100dp"

android:height="100dp"

android:width="300dp"

app:layout_constraintLeft_toLeftOf="parent"

app:layout_constraintTop_toTopOf="parent"

android:background="@color/colorPrimary"

android:layout_marginStart="100dp"

/>

最后

以上就是失眠果汁为你收集整理的android 里面 对象,Android中Activity对象获取以及属性设定的全部内容,希望文章能够帮你解决android 里面 对象,Android中Activity对象获取以及属性设定所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(27)

评论列表共有 0 条评论

立即
投稿
返回
顶部