1

背景画像があります:

android:background="@drawable/bg">

および TextView:

final TextView theTimer = new TextView(this);

setContentView を使用すると、そのうちの 1 つしか画面に配置できません。両方を 1 つのアクティビティに組み込むにはどうすればよいですか?

4

2 に答える 2

1

このようなことをしてください -

my_layout.xml ファイル

<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/ll"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" 
        android:background="@drawable/bg">
    </LinearLayout>

活動コード

setContentView(R.layout.my_layout);
final TextView theTimer = new TextView(this);
LinearLayout ll = (LinearLayout)findViewByID(R.id.ll);
ll.addView(theTimer);
于 2015-06-02T09:46:16.110 に答える
0

作成 RelativeLayoutするImageView

  RelativeLayout layout = new RelativeLayout(this);
    ImageView img = new ImageView(this);
    img.setImageResource(R.drawable.your_drawable);


    TextView tv1 = new TextView(this);
    tv1.setText("B");
    RelativeLayout.LayoutParams layoutParams =new RelativeLayout.LayoutParams(
            RelativeLayout.LayoutParams.WRAP_CONTENT,
            RelativeLayout.LayoutParams.WRAP_CONTENT);

    layoutParams.addRule(RelativeLayout.CENTER_IN_PARENT, RelativeLayout.TRUE);
    tv1.setLayoutParams(layoutParams);

    layout.addView(img);
    layout.addView(tv1);

    setContentView(layout);
于 2015-06-02T09:42:37.957 に答える