我正在开发一个应用程序,当您按下按钮时,该应用程序会生成随机引用(来自开关)。然后进入下一个屏幕,然后将其显示为textView。那部分有效。我想在这下面有一个按钮,它会将用户送回主屏幕(我还计划有两个其他按钮,但后面会有这些按钮)。但是,应用程序只显示文本或按钮,而不是两者。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_comp_out);
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
// Create the text view
TextView textView = new TextView(this);
textView.setTextSize(40);
textView.setText(message);
Button button = new Button(this);
button.setText("Main Menu");
button.setTextColor(Color.parseColor("#ff0000"));
button.setHeight(75);
// Set the text view as the activity layout
setContentView(textView);
setContentView(button);
}
这是我用来创建文本输出和按钮的代码。 String消息是引用。这段代码正在制作一个可以填满整个屏幕的按钮。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/orange">
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginEnd="5dp"
android:layout_marginStart="5dp"
android:layout_marginTop="5dp"
android:textColor="@color/blue"
android:text="@string/button_menu" />
</LinearLayout>
如果没有java代码制作按钮,我就是在使用它,这也没有制作按钮。 (背景也没有被设置为橙色,但这不是什么大问题)关于如何将按钮放在文本下的任何想法?
答案 0 :(得分:0)
你有 3 setContentView()
说明(第二个和第三个覆盖第一个,为什么你只看到一个按钮 - 你定义的那个在代码中 - 不再获得橙色背景
必须只有 1 。
该指令用于设置应包含两个组件的Activity(或Fragment)布局。
尝试这样的事情:
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_comp_out);
TextView textview = (TextView) findViewById(R.id.text1);
Button button = (Button) findViewById(R.id.button1);
// Add a click handler for your button - choose one of the possible methods (see the link at the end of this answer).
// The following instructions should go inside the click handler.
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
}
<强> activity_comp_out.xml 强>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/orange"
>
<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginEnd="5dp"
android:layout_marginStart="5dp"
android:layout_marginTop="5dp"
android:textColor="@color/blue"
android:text="@string/text_menu"
/>
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginEnd="5dp"
android:layout_marginStart="5dp"
android:layout_marginTop="5dp"
android:textColor="@color/blue"
android:text="@string/button_menu"
/>
</LinearLayout>
此处说明了几种处理View(不仅是Buttons)点击的方法:http://www.tutorialspoint.com/android/android_event_handling.htm
答案 1 :(得分:0)
setContentView()
用于扩充您的布局,您需要从充气布局中抓取按钮对象:
Button button = (Button) findViewById(R.id.button1);
将TextView添加到布局后,您可以对TextView执行相同的操作。