画像上のAndroidテキスト


95

画像付きのimageViewがあり、その画像の上にテキストを配置します。どうすればそれを達成できますか?


1
単純な方法は、ImageViewで行うのと同じように、textViewを取得して背景に設定することです。それはあなたの仕事を簡単にします..
AndroidGeek '23年

以下のリンクをご覧ください。私はそれをuを助けることを願っています... stackoverflow.com/questions/11100428/...
ガネーシュKatikar

回答:


162

それは私がそれをした方法であり、それはあなたがRelativeLayoutの中で要求したとおりに機能しました:

<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/relativelayout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <ImageView
        android:id="@+id/myImageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/myImageSouce" />

    <TextView
        android:id="@+id/myImageViewText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@id/myImageView"
        android:layout_alignTop="@id/myImageView"
        android:layout_alignRight="@id/myImageView"
        android:layout_alignBottom="@id/myImageView"
        android:layout_margin="1dp"
        android:gravity="center"
        android:text="Hello"
        android:textColor="#000000" />

</RelativeLayout>

この例をたくさんありがとう。compoundedDrawable textviewを使用しようとしましたが、画像のURLを設定できません。ただし、layout_align設定が認識されるように、相対レイアウトでこの回避策を使用することが重要です。
AntonSack 2013年

アライメントにコントロールのIDを置くこと、感謝をたくさん解い
KAL kokah

16

別の面から考えてみてください。背景にドローアブルを備えたTextViewを作成する方が簡単なようです。

 <TextView
            android:id="@+id/text"
            android:background="@drawable/rounded_rectangle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
        </TextView>

10
この回答の問題は、imageViewのような背景属性を制御できないことです。たとえばスケール。
ジーザスディムリックス

6

たぶん

  • Class ImageViewから継承した新しいクラスを作成し、
  • メソッドをオーバーライドしますonDrawsuper.onDraw()最初にそのメソッドを呼び出し、
  • 次に、表示するテキストを描画します。

そのようにすると、これを単一のレイアウトコンポーネントとして使用できるため、他のコンポーネントと一緒にレイアウトしやすくなります。



5

多くの方法があります。RelativeLayoutまたはAbsoluteLayoutを使用している。

相対を使用すると、たとえば、画像を左側で親に揃え、テキストを親に合わせて左側に揃えることもできます。次に、テキストビューでマージンとパディング、および重力を使用して、どこに線を引くかを指定できます。画像の上にしたい。


1
偶然この方法に出くわしました。しかし、imagebuttonやimageviewの上にテキストを置きたいときにとても便利です。例-現在の状態の画像の上に現在の温度を重ねます。
フォボス

2

TextViewを使用して、その背景を使用する画像に変更できます。


この回答の問題は、imageViewのような背景属性を制御できないことです。たとえばスケール。
Jesus Dimrix

2

このため、1つのTextViewのみを使用しandroid:drawableLeft/Right/Top/Bottomて、ImageをTextViewに配置できます。さらに、TextViewとドローアブルの間にいくつかのパディングを使用することができますandroid:drawablePadding=""

次のように使用します。

<TextView
    android:id="@+id/textAndImage"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"

    android:drawableBottom="@drawable/yourDrawable"
    android:drawablePadding="10dp" 
    android:text="Look at the drawable below"/>

これにより、追加のImageViewは必要ありません。TextViewの複数のサイドで2つのドローアブルを使用することも可能です。

これを使用して直面する唯一の問題は、ドローアブルをImageViewのようにスケーリングできないことです。


2

これはあなたを助ける以下のコードを試してください `

  <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="150dp">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:src="@drawable/gallery1"/>


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="#7ad7d7d7"
        android:gravity="center"
        android:text="Juneja Art Gallery"
        android:textColor="#000000"
        android:textSize="15sp"/>
</RelativeLayout>

0

以下のコードはあなたを助けます

public class TextProperty {
    private int heigt;                              //读入文本的行数
    private String []context = new String[1024];    //存储读入的文本

    /*
     *@parameter wordNum
     *
     */
    public TextProperty(int wordNum ,InputStreamReader in) throws Exception {
        int i=0;
        BufferedReader br = new BufferedReader(in);
        String s;
        while((s=br.readLine())!=null){
            if(s.length()>wordNum){
                int k=0;
                while(k+wordNum<=s.length()){
                    context[i++] = s.substring(k, k+wordNum);
                    k=k+wordNum;
                }
                context[i++] = s.substring(k,s.length());
            }
            else{
                context[i++]=s;
            }
        }
        this.heigt = i;
        in.close();
        br.close();
    }


    public int getHeigt() {
        return heigt;
    }

    public String[] getContext() {

        return context;
    }
}
public class MainActivity extends AppCompatActivity {

    private Button btn;
    private ImageView iv;
    private final int WORDNUM = 35;  //转化成图片时  每行显示的字数
    private final int WIDTH = 450;   //设置图片的宽度

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        iv = (ImageView) findViewById(R.id.imageView);
        btn = (Button) findViewById(R.id.button);

        btn.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                int x=5,y=10;
                try {
                    TextProperty tp = new TextProperty(WORDNUM, new InputStreamReader(getResources().getAssets().open("1.txt")));
                    Bitmap bitmap = Bitmap.createBitmap(WIDTH, 20*tp.getHeigt(), Bitmap.Config.ARGB_8888);
                    Canvas canvas = new Canvas(bitmap);
                    Paint paint = new Paint();
                    paint.setColor(Color.WHITE);
                    paint.setTextAlign(Paint.Align.LEFT);
                    paint.setTextSize(20f);

                    String [] ss = tp.getContext();
                    for(int i=0;i<tp.getHeigt();i++){
                        canvas.drawText(ss[i], x, y, paint);
                        y=y+20;
                    }

                    canvas.save(Canvas.ALL_SAVE_FLAG);
                    canvas.restore();
                    String path = Environment.getExternalStorageDirectory() + "/image.png";
                    System.out.println(path);
                    FileOutputStream os = new FileOutputStream(new File(path));
                    bitmap.compress(Bitmap.CompressFormat.PNG, 100, os);
                    //Display the image on ImageView.
                    iv.setImageBitmap(bitmap);
                    iv.setBackgroundColor(Color.BLUE);
                    os.flush();
                    os.close();
                }
                catch (Exception e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        });
    }
}```
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.