初识android
程序员文章站
2022-03-02 16:48:25
...
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); start = (Button) findViewById(R.id.start); //得到Button对象 view = (TextView) findViewById(R.id.view); name1 = (EditText) findViewById(R.id.name1); name2 = (EditText) findViewById(R.id.name2); }
<LinearLayout android:layout_width="0dip" android:layout_height="fill_parent" android:layout_weight="1" android:orientation="vertical" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center_horizontal" android:text="@string/name1" /> <EditText android:id="@+id/name1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:inputType="text" > </EditText> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center_horizontal" android:text="@string/name2" /> <EditText android:id="@+id/name2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:inputType="text" > </EditText> <TextView android:id="@+id/view" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center_horizontal" android:text="" /> <Button android:id="@+id/start" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/start" android:onClick="onClickStart" > </Button> </LinearLayout>
推荐阅读
-
【PowerShell(2)】—— 初识PowerShell
-
Android App中DrawerLayout抽屉效果的菜单编写实例,drawerlayout上下抽屉_PHP教程
-
Android 使用Retrofit下载文件并实现进度监听
-
android教程之把自己的应用加入到系统分享中
-
android 端拍照并运用Tesseract OCR 识别图片中字符
-
Android跟PHP开发最佳实践
-
Swoole 初识,swoole初识_PHP教程
-
三星Android(安卓)手机系统锁屏功能信息泄露风险的防范
-
Android UI控件系列:Toast(提示)
-
Android 8.0系统用户连接WiFi上网狂掉线,安卓8要背锅吗?