在Android的RelativeLayout中,我们可以使用以下代码在屏幕中心设置textView:
<TextView
android:text="This is TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
结果:
top
-
-
-
-
This is TextView (center vertical)
-
-
-
-
bottom
但是我需要将textView放到底部,我尝试添加marginTop
但似乎在使用layout_centerVertical=true
后它变得不可能。任何解决方案?
预期结果(略微下调):
top
-
-
-
-
-
-
This is TextView (center vertical slight to bottom)
-
-
bottom
答案 0 :(得分:9)
试试这个:
尝试使用RelativeLayout,它可以使用重量轻松完成您的要求:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical">
<TextView
android:id="@id/dummy"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
<TextView
android:layout_below="@id/dummy"
android:layout_marginTop="10dp"
android:text="This is TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RelativeLayout>
答案 1 :(得分:6)
尝试使用LinearLayout,它可以使用重量轻松完成您的要求:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center_vertical">
<TextView
android:text="This is TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>
答案 2 :(得分:6)
为什么在父视图中添加嵌套视图?
使用import static org.junit.Assert.*;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.junit.Test;
import org.springframework.mock.web.*;
import prj.iopo.filesystem.FileSystemHandler;
public class TestFileSystemHandler {
FileSystemHandler fsh = new FileSystemHandler();
@Test
public void testBackup() {
FileInputStream inputFile;
try {
inputFile = new FileInputStream("D:\\LAB\\job\\8972067.zip");
MockMultipartFile file = new MockMultipartFile("file", "8972067.zip", "application/zip", inputFile);
byte[] fileContent = file.getBytes();
String name = file.getOriginalFilename();
String backupOutput = fsh.fileBackup(fileContent, name);
assertEquals("Backup Created", backupOutput);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
属性。
示例:强>
paddingTop
希望这会对你有所帮助。
答案 3 :(得分:1)
我今天遇到了这种问题,我想出了这种方式。 Sapce
和LinearLayout
是一个很好的解决方案。
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/base_background_color">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/base_toolbar_color"
android:minHeight="?attr/actionBarSize"/>
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar"/>
<!-- using LinearLayout to align ProgressBar to center vertical -->
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:orientation="vertical">
<Space
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"/>
<ProgressBar
android:id="@+id/other_profile_progressBar"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="false"/>
</LinearLayout>
</RelativeLayout>
答案 4 :(得分:-1)
如果您不打算为视图制作平移动画,则可以使用android:translationY
属性将其尽可能多地推入(向上推的负值)