- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试通过实现 developer.android.com 上给出的示例重新熟悉 Android .
我正在尝试 this example在相对布局上。虽然布局对我来说很清楚,但我无法向此处提供的微调器添加功能。这是我正在尝试做的事情:
让用户可以选择 future 7 天中的任何一天来设置闹钟。为此,我想用每次启动应用程序时动态设置的 ArrayAdapter
填充微调器。 ArrayAdapter
的内容将是当前日期和接下来的 7 天。我无法初始化 ArrayAdapter
。
鉴于内容是动态的,ArrayAdapter
是最好的数据结构吗?
代码:
activity_main.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<EditText android:id="@+id/reminderName"
android:hint="@string/reminderNameString"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
/>
<Spinner android:id="@+id/dateSelect"
android:layout_below="@id/reminderName"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/timeSelect"
android:hint="@string/selectDate"
/>
<Spinner android:id="@id/timeSelect"
android:hint="@string/selectTimeString"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@id/reminderName"
/>
<Button android:id="@+id/setButton"
android:hint="@string/setString"
android:layout_below="@id/timeSelect"
android:layout_alignRight="@id/reminderName"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:onClick="onSet"
/>
<TextView android:id="@+id/text"
/>
</RelativeLayout>
主要功能:
package com.example.relativelayout;
import java.util.ArrayList;
import java.util.Date;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.Spinner;
public class MainActivity extends Activity {
Spinner dates;
Spinner times;
@Override
public void onCreate(Bundle savedInstanceState) {
/* This function must move like so:
* 1. Generate the dates.
* 2. Add them to an arrayList
* 3. Set the data via an adapter into the spinner.
* 4. Set the layout.
*/
super.onCreate(savedInstanceState);
Log.v(this.toString(), "Loaded the layout");
//init ArrayList object to store all the dates.
ArrayList<String> dates_list = new ArrayList<String>(8); //there are always only 7 days.
Date d = new Date(); //initialize the date to current date and time.
dates_list.add(d.toString());
//GregorianCalendar g = new GregorianCalendar();
Log.v(this.toString(), "Current date = " + d.toString());
for(int i = 0; i < 7; i++) {
if( (d.getMonth() % 2 != 0) || (d.getMonth() == 8) ) {
//the month has 31 days.
int dateAdj = d.getDate();
if( (dateAdj + i) > 31 ) {
dateAdj = (dateAdj + i) - 31;
d.setDate(dateAdj);
d.setMonth(d.getMonth() + 1);
} else {
d.setDate((dateAdj + 1));
}
} else { //the month has only 30 days
int dateAdj = d.getDate();
if( (dateAdj + i) > 30 ) {
dateAdj = (dateAdj + i) - 30;
d.setDate(dateAdj);
d.setMonth(d.getMonth() + 1);
} else {
d.setDate((dateAdj + 1));
}
}
dates_list.add(d.toString()); //add it to the list.
//Log.v(this.toString(), "The date today = " + d.toString());
}
Log.v(this.toString(), "Printing details of the arrayList");
/*for(int i = 0; i < 8; i++) {
Log.v(this.toString(), "Date in position " + i + " " + dates_list.get(i));
}*/
//have all the dates in the prescribed format. add it to the spinners.
ArrayAdapter<String> array_adapter_dates = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, dates_list);
Log.v(this.toString(), "Adding dates to array adapters.");
//init the spinner from the layouts.
dates = (Spinner) findViewById(R.id.dateSelect); //got the spinner
array_adapter_dates.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
Log.v(this.toString(), "Spinners initialized. Moving to apply adapters to the spinner.");
//apply adapter to the spinner.
dates.setAdapter(array_adapter_dates);
Log.v(this.toString(), "Applied adapter to the spinner.");
//set the layout
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
public void onSet(View view) {
/*This is the function called when the Set button is pressed.
* 1. Take the details of the spinners.
* 2. Flash them.
* 3. Set an alarm with it.
*/
Log.v(this.toString(), "onSet() function inboked.");
}
}
最佳答案
您必须创建一个 Arraylist,然后将 date.tostring 添加到此 arraylist,而不是将 Date 对象添加到适配器。
使用这个 ArrayList 创建一个 ArrayAdapter
array_adapter_dates = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1, Arraylist<String>)
关于android - 相对布局中的 ArrayAdapter - Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11964844/
我们有一个应用程序,我们可以在其中设计标签,然后根据设计创建图像并将其发送到打印机。图像在通过 TCP/IP 发送之前被制成字节流。 简而言之,我们有一个旋转设置,可以自动计算标签上不同元素的位置。而
我们在 IIS7 中有一个 MVC3 应用程序:http://mydomain.com/myapplication/ javascript 中的相对 URL 是什么: http://mydomain.
我的例子:http://jsfiddle.net/kwnk8qup/ 我的代码: container(父 div
如何将元素放置在右侧,并保持后面元素的持久位置? 我想在没有 Efficiently ... 的情况下将 text-align: right 对齐到右侧,并保留 t2 和 t3 元素之间的空间。 当我
假设我有一个包含以下文件的模块包。一个空文件 C:\codes\package\__init__.py 和一些重要文件: 一个位于C:\codes\package\first.py def f():
我正在尝试使用以下代码在屏幕上相对移动光标: input.type = INPUT_MOUSE; ZeroMemory(&input, sizeof(input)); input.mi.mouseDa
我排列了 3 个 div;中心 div 有许多 position:absolute 图像(它们重叠——一次显示一个图像;其余的是 display:none;对于 jQuery 交叉淡入淡出,这不是密切
我在 SQL 2000 数据库中有以下简化的表结构: ID AppName Key Value EffectiveDate -- ------- ----- ------- ---
给定以下配置: server { listen 80; server_name site.com; location /proxy { proxy_pa
我正在使用这些方法动态加载图像和资源目录,但它们并不适用于所有情况 new Uri(@"pack://application:,,/Images/lession_tab.png"); 此方法不适用于图
在插入/更新许多行时,我知道SQLite的“问题”,但事实并非如此。 我正在更新包含约250条记录的表中的ONE一行(由PK索引)中的ONE字段。查询通常需要200毫秒左右的时间。听起来很少,但很大。
如何向左或向右滑动线性布局。在该线性布局中,默认情况下我有一个不可见的删除按钮,还有一些其他小部件,它们都是可见状态,当向左滑动线性布局时,我需要使其可见的删除按钮,当向右滑动时,我需要隐藏该删除按钮
Imagen 我有一个 2D 点 (x,y) 列表,它们在我的简单游戏中描述了 2D 地形。 然后我让 glVertex() 在 GL_POINTS 模式下绘制所有这些点。 然后我有一个球,它也有它的
我正在使用 Google CloudSQL 并具有以下简单代码: ;dbname=', 'root', '' ); $db->setAttribute ( PDO::ATTR_ERRMODE, PDO
我知道有几个类似的问题,但是,其中的示例并没有说明问题,或者我无法从中获利 - 我真可耻。 所以我的问题是在带有 GUI 的简单应用程序中加载图像。例如: 我在 "D:\javaeclipseprog
我对放置在表格单元格内的 div 有疑问。单元格具有固定的高度和 div 相对于 height:100% 定位。 jsfiddle example td { height:80px;
我正在抓取一些数据。 我需要的数据点之一是日期,但包含此数据的表格单元格仅包括月份和日期。幸运的是,年份被用作对表格进行分类的标题元素。 出于某种原因,year = table.find_elemen
我想要一个 DIV,最大 90% 高度或 90% 宽度。我只想将图片作为背景放入 DIV 中,并且完整的 svg-image 应该是可见的。在移动设备和桌面设备上。 CSS: .camera {
我是网页设计新手,想了解 CSS 中定位的概念。我对相对和绝对定位元素有一些了解。在下面的 fiddle 中,我有一个 作为 的父级.当我做 p position:absolute ,边框崩溃不像我
我在调整图像高度相对于浏览器窗口的大小时遇到了一些严重的困难——宽度可以很好地调整大小,但高度保持不变。我尝试过 height: 100% 和 height: auto,以及 height: 10
我是一名优秀的程序员,十分优秀!