我想删除TextView
和Button
之间的空格
我尝试了很多选择,但现在没有人工作。
在此先感谢,任何帮助将不胜感激。
the xml code and preview
这是代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.android.myapplication.MainActivity">
<TextView
android:layout_margin="0dp"
android:gravity="center"
android:textColor="#000000"
android:textSize="33sp"
android:text="hello"
android:background="#cc3"
android:layout_width = "match_parent"
android:layout_height = "0dp"
android:layout_weight = "3"/>
<Button
android:layout_margin="0dp"
android:layout_width = "match_parent"
android:layout_weight = "1"
android:layout_height = "0dp"
android:text="Click"/>
</LinearLayout>
答案 0 :(得分:0)
使用负边距。
android:margin=-2dp
编辑:如果你想避免负边距,你必须创建自己的(按钮)视图,因为标准按钮视图带有该边距,所以你不能删除它
答案 1 :(得分:0)
您可以随时将Button替换为另一个TextView并向其添加OnClickListener吗?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.android.myapplication.MainActivity">
<TextView
android:gravity="center"
android:textColor="#000000"
android:textSize="33sp"
android:text="hello"
android:background="#cc3"
android:layout_width = "match_parent"
android:layout_height = "0dp"
android:layout_weight = "3"/>
<TextView
android:id="@+id/tv_button"
android:layout_width = "match_parent"
android:layout_weight = "1"
android:layout_height = "0dp"
android:gravity="center"
android:textAllCaps="true"
android:text="Click"/>
</LinearLayout>
然后在你的活动中:
TextView button = (TextView) findViewById(R.id.tv_button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//Do some stuff here
}
});
答案 2 :(得分:0)