【发布时间】:2017-10-05 15:08:08
【问题描述】:
我正在尝试为我的 Android 应用程序添加一个旋转的进度视觉效果,为了使它变得复杂,我目前只在我的 onCreate 中启动它而不是结束它,因为它应该很容易获得没错。但是,按照进度条的官方 Android 文档,它指定简单地包含
<ProgressBar
android:id="@+id/weather_loading_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
对于不确定的加载栏,它不起作用。我已经尝试将indeterminate 和visibility 添加到它,但没有运气。
<ProgressBar
android:id="@+id/weather_loading_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true"
android:visibility="visible"
/>
我正在使用 Kotlin 的 android 扩展,所以在我的 onCreate() 中我已经尝试过
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
//setVisibility here doesn't actually get shown as an option in the autocomplete, but still compiles.
weather_loading_bar.setVisibility(View.VISIBLE)
}
但是当我的应用启动时,没有进度条。
编辑:这是整个 activity_main 布局
<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=".ui.MainActivity">
<android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/currentData"
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardBackgroundColor="@color/blue"
card_view:cardCornerRadius="0dp"
card_view:cardMaxElevation="25dp">
<RelativeLayout
android:id="@+id/cardviewLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp">
<LinearLayout
android:id="@+id/temperature_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:textSize="10sp"
tools:text="this is the time" />
<TextView
android:id="@+id/temperature"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:textSize="25sp"
tools:text="50°" />
</LinearLayout>
<LinearLayout
android:id="@+id/feel_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_weight="1"
android:gravity="center"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Feels Like"
android:textColor="@color/white"
android:textSize="10sp" />
<TextView
android:id="@+id/feels"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:textSize="25sp" />
</LinearLayout>
<!-- Layout Middle-->
<LinearLayout
android:id="@+id/forecast_summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:orientation="vertical"
android:padding="30dp">
<ImageView
android:id="@+id/current_icon"
android:layout_width="100dp"
android:layout_height="100dp" />
<TextView
android:id="@+id/summary_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:textSize="15sp" />
</LinearLayout>
<!-- End Layout Middle -->
<!-- Layout bottom -->
<LinearLayout
android:id="@+id/precip_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/forecast_summary"
android:layout_weight="1"
android:gravity="center"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Chance of Rain"
android:textColor="@color/white"
android:textSize="10sp" />
<TextView
android:id="@+id/precipitation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:textSize="25sp" />
</LinearLayout>
<LinearLayout
android:id="@+id/wind_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@+id/forecast_summary"
android:layout_weight="1"
android:gravity="center"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Wind Speed"
android:textColor="@color/white"
android:textSize="10sp" />
<TextView
android:id="@+id/wind"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:textSize="25sp" />
</LinearLayout>
<!-- End layout bottom -->
</RelativeLayout>
</android.support.v7.widget.CardView>
<view
android:id="@+id/recycler_view"
class="android.support.v7.widget.RecyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/currentData"
android:layout_centerInParent="true" />
<ProgressBar
android:id="@+id/weather_loading_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true"
android:visibility="visible"
/>
【问题讨论】:
-
您需要提供整个 activity_main.xml 文件以确定进度条不显示的原因。
-
这很可能是您的布局问题,而不是 Kotlin。
-
我已经进行了编辑以包含布局
-
您的
ProgressBar位于布局的最底部。阅读此question 以获取更多详细信息。
标签: android kotlin android-progressbar kotlin-android-extensions