我没有看到我的" Hello World" TextView中。 列表视图,我用元素填充,就是所有这些。
<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">
tools:context="lister.quantumproductions.com.lister.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:layout_above="@+id/recipe_list_view"></TextView>
<ListView
android:id="@+id/recipe_list_view"
android:layout_width="match_parent"
android:layout_height="match_parent"></ListView>
</RelativeLayout>
public class MainActivity extends AppCompatActivity {
private ListView mListView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
loadListView();
}
private void loadListView() {
mListView = findViewById(R.id.recipe_list_view);
final ArrayList<Recipe> recipes = Recipe.getRecipesFromFile("recipes.json", this);
RecipeAdapter a = new RecipeAdapter(this, recipes);
mListView.setAdapter(a);
}
}
答案 0 :(得分:1)
你的ListView填满整个屏幕,然后你说TextView应该在ListView之上,这使它出现在屏幕之外,所以它不可见。
您需要反转依赖关系。
因此,ListView不应位于ListView之上,而是位于TextView之下。
答案 1 :(得分:1)
RelativeLayout导致最后一项覆盖前一项,如果它具有match_parent宽度和高度。更改订单或使用LinearLayout而不是。
答案 2 :(得分:1)
你可以使用LinearLayout作为具有垂直方向的父级,它将完美地工作: -
我已更正您的xml代码,使用此代码可以使用
<LinearLayout
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:orientation="vertical"
tools:context="lister.quantumproductions.com.lister.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:layout_above="@+id/recipe_list_view"></TextView>
<ListView
android:id="@+id/recipe_list_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"></ListView>
</LinearLayout>
它将起作用,将显示textview和listview。
如果您只想使用相对布局,请将listview设置为wrap_content
<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">
tools:context="lister.quantumproductions.com.lister.MainActivity">
<TextView
android:id="@+id/recipe_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"></TextView>
<ListView
android:id="@+id/recipe_list_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/recipe_text_view"></ListView>
</RelativeLayout>
答案 3 :(得分:0)
试试这个
<TextView
android:id="@+id/text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"></TextView>
<ListView
android:layout_below="@id/text_view"
android:id="@+id/recipe_list_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"></ListView>