3个回答
展开全部
1、新建一个按钮和文本框
Button btn = new Button(this);//新建按钮,这里的this表示context
EditText edt= new EditText(this);//新建文本框,这里的this表示context
2、新建一个水平布局
LinearLayout ll = new LinearLayout(this);//新建水平布局
3、往水平布局中添加新建的按钮和文本框就显示在一行上了
ll.addView(btn);//添加按钮
ll.addView(edt);//添加文本框
展开全部
很简单的,把Layout的排列方式设置为水平方式就行:android:orientation="horizontal"
如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hello world !"
android:layout_weight="1"/>
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="OK"
android:layout_weight="1"/>
</LinearLayout>
如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hello world !"
android:layout_weight="1"/>
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="OK"
android:layout_weight="1"/>
</LinearLayout>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
http://www.droiddraw.org/
可以把右边的控件拖到左边画面,然后按generate按钮来生成代码。
可以把右边的控件拖到左边画面,然后按generate按钮来生成代码。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询