Textview Gravity在android中无法正常工作
我的代码有什么问题,我试图在不同位置(左,右,中)显示名为"invalid"
TextView,但重力(左,右,中)不起作用!
我的text.xml是
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="20dp" >
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/etext"
android:hint="@string/comment"
android:inputType="textPassword"/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100">
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/button"
android:layout_weight="25"/>
<ToggleButton
android:id="@+id/toggleButton1"
android:layout_width="fill_parent"
android:layout_height="40dp"
android:text="ToggleButton"
android:layout_weight="75"
android:checked="true"
android:paddingLeft="15dp"/>
</LinearLayout>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/invalid"
android:layout_gravity="center"
android:gravity="center" />
</LinearLayout>
我的TextPlay.java是
public class TextPlay extends Activity {
Button button;
ToggleButton tbutton;
TextView tview;
EditText et;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.text);
button = (Button) findViewById(R.id.button1);
tbutton = (ToggleButton) findViewById(R.id.toggleButton1);
tview = (TextView) findViewById(R.id.textView1);
et = (EditText) findViewById(R.id.etext);
tbutton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
if (tbutton.isChecked()) {
et.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
} else {
et.setInputType(InputType.TYPE_TEXT_VARIATION_PASSWORD);
}
}
});
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
String input = et.getText().toString();
System.out.println(input);
if (input.contentEquals("left")) {
tview.setGravity(Gravity.LEFT);
} else if (input.contentEquals("right")) {
System.out.println("inside right");
tview.setGravity(Gravity.RIGHT);
} else if (input.contentEquals("right")) {
tview.setGravity(Gravity.CENTER);
}
}
});
}
}
你设置这个文本视图的宽度为“ wrap_content ”,这意味着什么是文本,视图是文本的大小。
而在LinearLayout
,默认引力(在此使用)是' 中心 '
你应该试试这个:
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent" <= change this
android:layout_height="wrap_content"
android:text="@string/invalid"
android:gravity="center" <= then this gravity will be taken into account
/>
99%的时间, not working properly
== not used properly
。
你错在gravity
和layout_gravity
。
gravity
是文本在TextView
排列的方式。 TextView
在wrap_content
中没有任何作用,因为TextView
恰好是文本的大小。
layout_gravity
是TextView
在自己的父对象中对齐的方式,在你的情况下是垂直的LinearLayout
你给你的TextView宽度wrap_content,这就是问题,请检查下面的代码并将其替换为你的代码。
<TextView
android:id="@+id/txtInvalid"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/invalid"
android:gravity="center"
/>
链接地址: http://www.djcxy.com/p/93311.html
上一篇: Textview Gravity not working properly in android
下一篇: Center multiple items in a RelativeLayout without putting them in a container?