Android TextView Layout программно - PullRequest
1 голос
/ 08 июня 2011

Я хочу выровнять TextViews один справа, другой слева, и каждая строка содержит одно представление текста ... Я не хочу использовать Width:fill_parent setGravity(Gravity.Right), потому что я использую фон.вот мой код:

LinearLayout mainChatLayout = new LinearLayout(main.this);
//ChatText.setId((int)System.currentTimeMillis());
lp = new RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
((android.widget.RelativeLayout.LayoutParams) lp).addRule(RelativeLayout.BELOW, recent.getId());
tv = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
//ChatText.setBackgroundColor(0xfff00000);#800080
if(recent.getId() % 2 == 0) {
    ChatText = new TextView(main.this);
    mainChatLayout.setId((int)System.currentTimeMillis());
    ChatText.setBackgroundDrawable(getResources().getDrawable(R.drawable.talk1));
    ChatText.setGravity(Gravity.RIGHT); // not working 
    ChatText.setText("some text");
    ChatText.setTextColor(Color.parseColor("#333333"));
    ChatText.setPadding(0, 10, 20, 10);
}
else{
    ChatText = new TextView(main.this);
    mainChatLayout.setId((int)System.currentTimeMillis());
    ChatText.setBackgroundDrawable(getResources().getDrawable(R.drawable.talk1));
    ChatText.setGravity(Gravity.LEFT);
    ChatText.setText("Time: " + System.currentTimeMillis());
    ChatText.setTextColor(Color.parseColor("#333333"));
    ChatText.setPadding(20, 10, 0, 10);
}
mainChatLayout.addView(ChatText, tv);
MainLayout.addView(mainChatLayout, lp);
recent = mainChatLayout;

1 Ответ

1 голос
/ 09 августа 2011
            LinearLayout ll= /// Find Your Layout Using ID
            TextView text=new TextView(this);

Теперь установите структуру используя LayoutParam. LayoutParam будет типом Parent of TextView

    text.setLayoutParams(new LinearLayout.LayoutParams(100,100));
    ll.addView(text);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...