我正在尝试从MainActivity.java创建一个布局,但我的模拟器没有显示我从MainActivity.java创建的布局和按钮。我是否必须在activity_main.xml中更改内容? 这是代码,
package com.example.pratt.myapplication;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.util.Log;
import android.widget.RelativeLayout;
import android.widget.Button;
import android.graphics.Color;
public class MainActivity extends ActionBarActivity {
private static final String TAG="My Message";
@Override
protected void onCreate(Bundle savedInstanceState) {
/*
*/
super.onCreate(savedInstanceState);
RelativeLayout myLayout=new RelativeLayout(this);
Button blue_button=new Button(this);
myLayout.setBackgroundColor(Color.RED);
myLayout.addView(blue_button);
blue_button.setText("Blue Button");
Log.i(TAG,"onCreate");
setContentView(myLayout);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
答案 0 :(得分:0)
我没有测试你的代码,但我想这是因为你没有为你的布局添加一些LayoutParams
,例如你的布局的宽度和高度。如果您不想使用固定的宽度和高度,可以改用LayoutParams.WRAP_CONTNT
或MATCH_PARENT
。
答案 1 :(得分:0)
我想你应该在Button
之前创建@Override
。
private static final String TAG="My Message";
@Override
protected void onCreate(Bundle savedInstanceState) {
/*
*/
super.onCreate(savedInstanceState);
RelativeLayout myLayout=new RelativeLayout(this);
myLayout.setBackgroundColor(Color.RED);
Button blue_button=new Button(this);
blue_button.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,
LayoutParams.WRAP_CONTENT)
myLayout.addView(blue_button);
blue_button.setText("Blue Button");
Log.i(TAG,"onCreate");
setContentView(myLayout);
}
您尚未指定button
的尺寸。因此,它会创建一个0dp x 0dp
的按钮。
希望这有帮助!